summaryrefslogtreecommitdiff
path: root/binutils/readelf.c
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2001-08-22 18:42:07 +0000
committerThiemo Seufer <ths@networkno.de>2001-08-22 18:42:07 +0000
commitd1bdd336d401266dbf03d28b7ce4ec9bf1459bf6 (patch)
treea141a25210487f3def2415eb0b6f4fc1336682a4 /binutils/readelf.c
parent63d069c06fe8480d58cf5ce392ca6ddd81d701a0 (diff)
downloadbinutils-gdb-d1bdd336d401266dbf03d28b7ce4ec9bf1459bf6.tar.gz
* readelf.c (get_machine_flags): Add detection of EF_MIPS_UCODE.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r--binutils/readelf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c
index fd375eb0035..5cdbc6d3769 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -1601,6 +1601,9 @@ get_machine_flags (e_flags, e_machine)
if (e_flags & EF_MIPS_CPIC)
strcat (buf, ", cpic");
+ if (e_flags & EF_MIPS_UCODE)
+ strcat (buf, ", ugen_reserved");
+
if (e_flags & EF_MIPS_ABI2)
strcat (buf, ", abi2");