aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1998-12-24 00:37:47 +0000
committerGavin Romig-Koch <gavin@redhat.com>1998-12-24 00:37:47 +0000
commit15b7d7d32a57f2c9575e47eaee1376b1c4b2cd2a (patch)
treee205d757a0a6593277f1ed34c2002181482b08c9 /gas
parent0bf2ba41ef3123cd52ec37634031ac8d935d0070 (diff)
downloadgdb-15b7d7d32a57f2c9575e47eaee1376b1c4b2cd2a.zip
gdb-15b7d7d32a57f2c9575e47eaee1376b1c4b2cd2a.tar.gz
gdb-15b7d7d32a57f2c9575e47eaee1376b1c4b2cd2a.tar.bz2
* config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-mips.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 24f8515..4dd9d85 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+1998-12-23 Gavin Romig-Koch <gavin@cygnus.com>
+
+ * config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64.
+
1998-12-21 Nick Clifton <nickc@cygnus.com>
* 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 87343be..797b365 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)