From: Ian Lance Taylor Date: Mon, 21 Oct 1996 22:02:15 +0000 (+0000) Subject: Correct MASK_64BIT to TARGET_64BIT X-Git-Tag: misc/cutover-egcs-0~1348 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=17964a96fae4be2704714f768b709d1eeffa6bb8;p=thirdparty%2Fgcc.git Correct MASK_64BIT to TARGET_64BIT From-SVN: r12986 --- diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 4266f59cd5da..3bfd940c7952 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -3470,7 +3470,7 @@ override_options () target_flags &= ~ (MASK_FLOAT64|MASK_64BIT); /* In the EABI in 64 bit mode, longs and pointers are 64 bits. */ - if (mips_abi == ABI_EABI && MASK_64BIT) + if (mips_abi == ABI_EABI && TARGET_64BIT) target_flags |= MASK_LONG64; /* ??? This doesn't work yet, so don't let people try to use it. */