From 15b7d7d32a57f2c9575e47eaee1376b1c4b2cd2a Mon Sep 17 00:00:00 2001 From: Gavin Romig-Koch Date: Thu, 24 Dec 1998 00:37:47 +0000 Subject: [PATCH] * config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64. --- gas/ChangeLog | 4 ++++ gas/config/tc-mips.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 24f851561c..4dd9d85cec 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +1998-12-23 Gavin Romig-Koch + + * config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64. + 1998-12-21 Nick Clifton * config/tc-m32r.c (md_assemble): Emit a NOP after a relaxable 16 diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 87343bee5a..797b365330 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -1110,7 +1110,7 @@ md_begin () /* Set the EABI kind based on the ISA before the user gets to change the ISA with directives. This isn't really the best, but then neither is basing the abi on the isa. */ - if (mips_opts.isa > 2 && strcmp (mips_abi_string,"eabi")) + if (mips_opts.isa > 2 && 0 == strcmp (mips_abi_string,"eabi")) mips_eabi64 = 1; if (mips_cpu != 0 && mips_cpu != -1) -- 2.34.1