aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-06-17 05:42:50 +0000
committerAndrew Cagney <cagney@redhat.com>2000-06-17 05:42:50 +0000
commit4a7f7ba82c16a22762b99f4d6b4510e396fc7791 (patch)
treec935ca2df6ad2e7630949248617dcf24de8714a9 /gdb
parent32f0787ac8c25806806c447ec0c6b7d551442d0d (diff)
downloadgdb-4a7f7ba82c16a22762b99f4d6b4510e396fc7791.zip
gdb-4a7f7ba82c16a22762b99f4d6b4510e396fc7791.tar.gz
gdb-4a7f7ba82c16a22762b99f4d6b4510e396fc7791.tar.bz2
EABI64 was selecting EABI32
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/mips-tdep.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 510abb0..a064931 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jun 17 15:39:28 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * mips-tdep.c (mips_gdbarch_init): When the object file header
+ specifies EABI64, select EABI64 and not EABI32.
+
2000-06-16 Nicholas Duffek <nsd@redhat.com>
* rs6000-tdep.c: Changes throughout for multi-arch 64-bit
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index f3223a4..94e96ca 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -3871,7 +3871,7 @@ mips_gdbarch_init (info, arches)
mips_abi = MIPS_ABI_EABI32;
break;
case E_MIPS_ABI_EABI64:
- mips_abi = MIPS_ABI_EABI32;
+ mips_abi = MIPS_ABI_EABI64;
break;
default:
mips_abi = MIPS_ABI_UNKNOWN;