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 510abb0c82d73b204facb02c17f541b32581086f..a0649317de007426150c374d46adc556ce82d3ec 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 f3223a45b5ae8d8a3c16e8ae3b7c0950abb3c6f0..94e96ca117ebef36b72be3e2f004b29d23ff395b 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;
This page took 0.031672 seconds and 4 git commands to generate.