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 | |
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')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5fa63dc..954e3d4 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +1999-07-16 Jakub Jelinek <jj@ultra.linux.cz> + + * readelf.c (get_machine_flags): Print EF_SPARC_SUN_US3. + 1999-07-15 Ian Lance Taylor <ian@zembu.com> * configure.in: Bump version number to 2.9.5. 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"); |