From 17964a96fae4be2704714f768b709d1eeffa6bb8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 21 Oct 1996 22:02:15 +0000 Subject: [PATCH] Correct MASK_64BIT to TARGET_64BIT From-SVN: r12986 --- gcc/config/mips/mips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.47.2