aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1998-12-29 14:09:36 +0000
committerGavin Romig-Koch <gavin@redhat.com>1998-12-29 14:09:36 +0000
commitffa3e1860a0cd165d16d4e7adf60ecf5d50d4508 (patch)
tree56bd00db519b1aa529860aa0b4da1d2c7a5e0ca9 /gas
parent4ef1f4677390c085543fe80eec41b0fe5d58ddca (diff)
downloadgdb-ffa3e1860a0cd165d16d4e7adf60ecf5d50d4508.zip
gdb-ffa3e1860a0cd165d16d4e7adf60ecf5d50d4508.tar.gz
gdb-ffa3e1860a0cd165d16d4e7adf60ecf5d50d4508.tar.bz2
1998-12-29 Gavin Romig-Koch <gavin@cygnus.com>
* config/tc-mips.c (md_begin): Another correction to the setting of mips_eabi64.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-mips.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 4dd9d85..8b74eb2 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+1998-12-29 Gavin Romig-Koch <gavin@cygnus.com>
+
+ * config/tc-mips.c (md_begin): Another correction to the setting of
+ mips_eabi64.
+
1998-12-23 Gavin Romig-Koch <gavin@cygnus.com>
* config/tc-mips.c (md_begin): Correct type-o in setting of mips_eabi64.
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index 797b365..a2e1afe 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -1110,7 +1110,9 @@ 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 && 0 == strcmp (mips_abi_string,"eabi"))
+ if (mips_opts.isa > 2
+ && mips_abi_string
+ && 0 == strcmp (mips_abi_string,"eabi"))
mips_eabi64 = 1;
if (mips_cpu != 0 && mips_cpu != -1)