Commit 17964a96 by Ian Lance Taylor

Correct MASK_64BIT to TARGET_64BIT

From-SVN: r12986
parent 085daa5a
...@@ -3470,7 +3470,7 @@ override_options () ...@@ -3470,7 +3470,7 @@ override_options ()
target_flags &= ~ (MASK_FLOAT64|MASK_64BIT); target_flags &= ~ (MASK_FLOAT64|MASK_64BIT);
/* In the EABI in 64 bit mode, longs and pointers are 64 bits. */ /* 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; target_flags |= MASK_LONG64;
/* ??? This doesn't work yet, so don't let people try to use it. */ /* ??? This doesn't work yet, so don't let people try to use it. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment