mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-23 12:09:49 +00:00
* readelf.c (get_machine_flags): Handle E_MIPS_ARCH_32R2.
This commit is contained in:
parent
794ac9d074
commit
cb44e358cf
@ -1,3 +1,7 @@
|
||||
2003-01-02 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* readelf.c (get_machine_flags): Handle E_MIPS_ARCH_32R2.
|
||||
|
||||
2002-12-30 Chris Demetriou <cgd@broadcom.com>
|
||||
|
||||
* doc/binutils.texi (objdump): Note MIPS HWR (Hardware Register)
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* readelf.c -- display contents of an ELF format file
|
||||
Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||
|
||||
Originally developed by Eric Youngdale <eric@andante.jic.com>
|
||||
Modifications by Nick Clifton <nickc@redhat.com>
|
||||
@ -1994,6 +1994,7 @@ get_machine_flags (e_flags, e_machine)
|
||||
case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
|
||||
case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
|
||||
case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
|
||||
case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
|
||||
case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
|
||||
default: strcat (buf, ", unknown ISA"); break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user