From 9e43103cadffa911c381dbc8c0f9139dc913d618 Mon Sep 17 00:00:00 2001 From: hjl Date: Tue, 1 Oct 2002 03:27:56 +0000 Subject: [PATCH] 2002-09-30 H.J. Lu * readelf.c (get_machine_flags): Handle E_MIPS_MACH_4120, E_MIPS_MACH_5400 and E_MIPS_MACH_5500. --- binutils/ChangeLog | 5 +++++ binutils/readelf.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f151710098..29a8339f97 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2002-09-30 H.J. Lu + + * readelf.c (get_machine_flags): Handle E_MIPS_MACH_4120, + E_MIPS_MACH_5400 and E_MIPS_MACH_5500. + 2002-09-17 Zack Weinberg * Makefile.am (CFILES): Add cxxfilt.c. diff --git a/binutils/readelf.c b/binutils/readelf.c index 05b553d7cb..69e50f63fc 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1821,8 +1821,11 @@ get_machine_flags (e_flags, e_machine) case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break; case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break; case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break; - case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break; case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break; + case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break; + case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break; + 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 0: /* We simply ignore the field in this case to avoid confusion: -- 2.11.0