# HG changeset patch # User michaelni # Date 1026236511 0 # Node ID cf7d120ed51a4e6b7a104114ba755210e8ca5af0 # Parent 9c66b5183ab33a37eaf3c554274c170d7703ac99 gcc3 bug workaround diff -r 9c66b5183ab3 -r cf7d120ed51a common.h --- a/common.h Tue Jul 09 16:08:43 2002 +0000 +++ b/common.h Tue Jul 09 17:41:51 2002 +0000 @@ -165,7 +165,7 @@ #define MAX(a,b) ((a) > (b) ? (a) : (b)) #define MIN(a,b) ((a) > (b) ? (b) : (a)) -#ifdef ARCH_X86 +#if defined ARCH_X86 && (__GNUC__ != 3 || __GNUC_MINOR__ > 1) // inverse for shift optimization (gcc should do that ...) #define INV32(a) (-a) #else