diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-05-12 04:51:22 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-05-12 04:51:22 +0000 |
commit | 216a600b17c009ed2cab614b9b75000196b0e89d (patch) | |
tree | c91f51df6697877113aab744d8f16be14c9d6ed8 /gdb/mips-tdep.c | |
parent | 746a987d82a5517a78b9fe8e1827969984301252 (diff) | |
download | gdb-216a600b17c009ed2cab614b9b75000196b0e89d.zip gdb-216a600b17c009ed2cab614b9b75000196b0e89d.tar.gz gdb-216a600b17c009ed2cab614b9b75000196b0e89d.tar.bz2 |
Fix tipo 32->64 in MIPS_EABI.
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 0799ac7..1db5544 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 |