From: Andrew Cagney Date: Fri, 12 May 2000 04:51:22 +0000 (+0000) Subject: Fix tipo 32->64 in MIPS_EABI. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=216a600b17c009ed2cab614b9b75000196b0e89d;p=binutils-gdb.git Fix tipo 32->64 in MIPS_EABI. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 92272bbcb2e..6c524ed0ad6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Fri May 12 14:46:52 2000 Andrew Cagney + + * mips-tdep.c (MIPS_EABI): Fix typo. Test for MIPS_ABI_EABI64. + Thu May 11 21:52:55 2000 Andrew Cagney * configure.in (WERROR_CFLAGS): Check that GCC accepts a -W diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 0799ac7a085..1db55446a50 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -116,7 +116,7 @@ struct gdbarch_tdep #if GDB_MULTI_ARCH #undef MIPS_EABI #define MIPS_EABI (gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI32 \ - || gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI32) + || gdbarch_tdep (current_gdbarch)->mips_abi == MIPS_ABI_EABI64) #endif #if GDB_MULTI_ARCH