From ebcb91b7dc6fdcadbcb9c30167c635bb46a96a60 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 9 Dec 2004 06:19:12 +0000 Subject: [PATCH] * readelf.c (get_machine_flags): Handle E_MIPS_MACH_9000. --- binutils/ChangeLog | 4 ++++ binutils/readelf.c | 1 + 2 files changed, 5 insertions(+) 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 + + * readelf.c (get_machine_flags): Handle E_MIPS_MACH_9000. + 2004-12-08 Ben Elliston * 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 -- 2.7.4