From: Gavin Romig-Koch Date: Thu, 24 Dec 1998 00:37:47 +0000 (+0000) Subject: * config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15b7d7d32a57f2c9575e47eaee1376b1c4b2cd2a;p=binutils-gdb.git * config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 24f851561c1..4dd9d85cecf 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 87343bee5a9..797b3653300 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)