diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-06-17 05:42:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-06-17 05:42:50 +0000 |
commit | 4a7f7ba82c16a22762b99f4d6b4510e396fc7791 (patch) | |
tree | c935ca2df6ad2e7630949248617dcf24de8714a9 /gdb/mips-tdep.c | |
parent | 32f0787ac8c25806806c447ec0c6b7d551442d0d (diff) | |
download | gdb-4a7f7ba82c16a22762b99f4d6b4510e396fc7791.zip gdb-4a7f7ba82c16a22762b99f4d6b4510e396fc7791.tar.gz gdb-4a7f7ba82c16a22762b99f4d6b4510e396fc7791.tar.bz2 |
EABI64 was selecting EABI32
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |