aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index ad5937a..72c1fd0 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2003-09-30 Chris Demetriou <cgd@broadcom.com>
+
+ * readelf.c (get_machine_flags): Handle E_MIPS_ARCH_64R2.
+
2003-09-29 H.J. Lu <hongjiu.lu@intel.com>
* readelf.c (dump_relocations): Support SHN_IA_64_ANSI_COMMON.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 520b736..9a88106 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -1916,6 +1916,7 @@ get_machine_flags (unsigned e_flags, unsigned e_machine)
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;
+ case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
default: strcat (buf, ", unknown ISA"); break;
}