EABI64 was selecting EABI32
authorAndrew Cagney <cagney@redhat.com>
Sat, 17 Jun 2000 05:42:50 +0000 (05:42 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sat, 17 Jun 2000 05:42:50 +0000 (05:42 +0000)
gdb/ChangeLog
gdb/mips-tdep.c

index 510abb0..a064931 100644 (file)
@@ -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
index f3223a4..94e96ca 100644 (file)
@@ -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;