From 5faa8e3921b9ab6c7cd50930baad1e8665fc8203 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 5 May 2005 17:57:31 +0000 Subject: Fix ia64-hpux build failure, patch from Steve Ellcey. * config/tc-ia64.c (MIN): Undef. --- gas/config/tc-ia64.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gas/config') diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index 31adc3d..729ce27 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -56,6 +56,9 @@ #endif #define NELEMS(a) ((int) (sizeof (a)/sizeof ((a)[0]))) + +/* Some systems define MIN in, e.g., param.h. */ +#undef MIN #define MIN(a,b) ((a) < (b) ? (a) : (b)) #define NUM_SLOTS 4 -- cgit v1.1