The last use was deleted in 2017.  There are the generic MIN/MAX macros
to use already, and in this new world we should use std::min, std::max.

Tested, committing.


Segher


2018-06-08  Segher Boessenkool  <seg...@kernel.crashing.org>

        * config/rs6000/rs6000.c (min, max): Delete.

---
 gcc/config/rs6000/rs6000.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index ec60c14..7c5bcd1 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -103,9 +103,6 @@
 #endif
 #endif
 
-#define min(A,B)       ((A) < (B) ? (A) : (B))
-#define max(A,B)       ((A) > (B) ? (A) : (B))
-
 static pad_direction rs6000_function_arg_padding (machine_mode, const_tree);
 
 /* Structure used to define the rs6000 stack */
-- 
1.8.3.1

Reply via email to