aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>1996-10-21 22:02:15 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>1996-10-21 22:02:15 +0000
commit17964a96fae4be2704714f768b709d1eeffa6bb8 (patch)
treef1784e93770f47c3e00dfd59987dcf156e4f21e7 /gcc
parent085daa5a3bec704bfa4c08e1b3e6098f50de9d8d (diff)
downloadgcc-17964a96fae4be2704714f768b709d1eeffa6bb8.zip
gcc-17964a96fae4be2704714f768b709d1eeffa6bb8.tar.gz
gcc-17964a96fae4be2704714f768b709d1eeffa6bb8.tar.bz2
Correct MASK_64BIT to TARGET_64BIT
From-SVN: r12986
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/mips/mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
index 4266f59..3bfd940 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. */