Bug 117276 - regression on gcc 2.95.x debug builds. Since we don't

understand exactly what the problem is here, and it does not seem to
happen on gcc 2.96, and 2.95 doesn't have the alias optimizations that
called for the new code in the first place, just make 2.95 use the old
code.  r=timeless, sr=brendan.
This commit is contained in:
bryner%netscape.com 2002-01-09 19:23:37 +00:00
parent 5d88648182
commit 7bdffe5186

View File

@ -59,7 +59,7 @@ JS_BEGIN_EXTERN_C
#define CPU_IS_ARM
#endif
#if __GNUC__ >= 2
#if (__GNUC__ == 2 && __GNUC_MINOR > 95) || __GNUC__ > 2
/*
* This version of the macros is safe for the alias optimizations that gcc
* does, but uses gcc-specific extensions.