fix mips preprocessor-decision mismatch

This commit is contained in:
Matthew Flatt 2010-07-13 15:09:35 -06:00
parent 95dd131e93
commit 9743fd9381

View File

@ -40,7 +40,7 @@ MA 02111-1307, USA. */
# endif
#endif
#if defined (__mips) && defined (_ABIN32)
#if (defined (__mips) || defined(mips)) && defined (_ABIN32)
/* Force the use of 64-bit limbs for all 64-bit MIPS CPUs if ABI permits. */
#define _LONG_LONG_LIMB
#endif