diff options
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index dbc782d..16d0c4d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2004-12-09 Ian Lance Taylor <ian@wasabisystems.com> + + * readelf.c (get_machine_flags): Handle E_MIPS_MACH_9000. + 2004-12-08 Ben Elliston <bje@au.ibm.com> * arlex.l: Fix formatting. diff --git a/binutils/readelf.c b/binutils/readelf.c index 4cbbf88..ac0a21a 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2019,6 +2019,7 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break; case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break; case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break; + case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break; case 0: /* We simply ignore the field in this case to avoid confusion: MIPS ELF does not specify EF_MIPS_MACH, it is a GNU |