aboutsummaryrefslogtreecommitdiff
path: root/bfd/elfn32-mips.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2003-04-07 20:08:10 +0000
committerKevin Buettner <kevinb@redhat.com>2003-04-07 20:08:10 +0000
commit59a8c196afe8ede290cfdeff7688194d6f4135b9 (patch)
treece8c015f752b80e48b8cd29e90354bda3bc90996 /bfd/elfn32-mips.c
parentf0ef6b29bde589566edef28c0a8267eff2ca8127 (diff)
downloadfsf-binutils-gdb-59a8c196afe8ede290cfdeff7688194d6f4135b9.zip
fsf-binutils-gdb-59a8c196afe8ede290cfdeff7688194d6f4135b9.tar.gz
fsf-binutils-gdb-59a8c196afe8ede290cfdeff7688194d6f4135b9.tar.bz2
* elfn32-mips.c (elf32_mips_grok_prstatus): Adjust core file related
constants for n32 ABI.
Diffstat (limited to 'bfd/elfn32-mips.c')
-rw-r--r--bfd/elfn32-mips.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfn32-mips.c b/bfd/elfn32-mips.c
index 9105d18..ab255fa 100644
--- a/bfd/elfn32-mips.c
+++ b/bfd/elfn32-mips.c
@@ -2024,7 +2024,7 @@ elf32_mips_grok_prstatus (abfd, note)
default:
return FALSE;
- case 256: /* Linux/MIPS */
+ case 440: /* Linux/MIPS N32 */
/* pr_cursig */
elf_tdata (abfd)->core_signal = bfd_get_16 (abfd, note->descdata + 12);
@@ -2033,7 +2033,7 @@ elf32_mips_grok_prstatus (abfd, note)
/* pr_reg */
offset = 72;
- raw_size = 180;
+ raw_size = 360;
break;
}