From: Alexandre Oliva Date: Wed, 2 Oct 2002 01:29:29 +0000 (+0000) Subject: * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name X-Git-Tag: gdb_5_3-2002-12-12-release~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0f0389fe3e26d397046d1a597816bb94cfbcb3e;p=thirdparty%2Fbinutils-gdb.git * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name of the section for the N64 ABI, fixed. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4cafa33b5fb..30200b2ac20 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2002-10-01 Alexandre Oliva + * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name + of the section for the N64 ABI, fixed. + * config/mips/tm-irix6.h: Include solib.h. 2002-10-01 Andrew Cagney diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 58e1a8b128d..a8ff5776d75 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -5547,7 +5547,7 @@ mips_find_abi_section (bfd *abfd, asection *sect, void *obj) *abip = MIPS_ABI_O32; else if (strcmp (name, ".mdebug.abiN32") == 0) *abip = MIPS_ABI_N32; - else if (strcmp (name, ".mdebug.abiN64") == 0) + else if (strcmp (name, ".mdebug.abi64") == 0) *abip = MIPS_ABI_N64; else if (strcmp (name, ".mdebug.abiO64") == 0) *abip = MIPS_ABI_O64;