aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2002-10-02 01:28:55 +0000
committerAlexandre Oliva <aoliva@redhat.com>2002-10-02 01:28:55 +0000
commit62a49b2cf4251cf30f338abe0bbfb11a9a9b4240 (patch)
treea3fba83c3fe728efae115c326d045b6774ecbfa2 /gdb/mips-tdep.c
parentd154bee237a278c3a8d2e18a7342395e111aec7e (diff)
downloadgdb-62a49b2cf4251cf30f338abe0bbfb11a9a9b4240.zip
gdb-62a49b2cf4251cf30f338abe0bbfb11a9a9b4240.tar.gz
gdb-62a49b2cf4251cf30f338abe0bbfb11a9a9b4240.tar.bz2
* mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
of the section for the N64 ABI, fixed.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 627af20..fd61c5b 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -5592,7 +5592,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;