EABI64 was selecting EABI32

This commit is contained in:
Andrew Cagney 2000-06-17 05:42:50 +00:00
parent 32f0787ac8
commit 4a7f7ba82c
2 changed files with 6 additions and 1 deletions

View 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

View 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;