diff options
author | Richard Henderson <rth@redhat.com> | 1999-07-16 21:38:16 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-07-16 21:38:16 +0000 |
commit | d07faca29866834c230996f03e7640f06dee80bc (patch) | |
tree | ee8c9396dd2d2f85d543baeaa06b79e00967c1f4 /binutils/readelf.c | |
parent | 97272b323d51d6d881007cd0080027eb1ae4add2 (diff) | |
download | gdb-d07faca29866834c230996f03e7640f06dee80bc.zip gdb-d07faca29866834c230996f03e7640f06dee80bc.tar.gz gdb-d07faca29866834c230996f03e7640f06dee80bc.tar.bz2 |
Jakub Jelinek <jj@ultra.linux.cz>
* readelf.c (get_machine_flags): Print EF_SPARC_SUN_US3.
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"); |