diff options
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index 4b7dc0a..266db75 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1104,7 +1104,10 @@ get_machine_flags (e_flags, e_machine) strcat (buf, ", v8+"); if (e_flags & EF_SPARC_SUN_US1) - strcat (buf, ", ultrasparc"); + strcat (buf, ", ultrasparcI"); + + if (e_flags & EF_SPARC_SUN_US3) + strcat (buf, ", ultrasparcIII"); if (e_flags & EF_SPARC_HAL_R1) strcat (buf, ", halr1"); |