Jakub Jelinek <jj@ultra.linux.cz>

* readelf.c (get_machine_flags): Print EF_SPARC_SUN_US3.
This commit is contained in:
Richard Henderson 1999-07-16 21:38:16 +00:00
parent 97272b323d
commit d07faca298
2 changed files with 8 additions and 1 deletions

View File

@ -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.

View File

@ -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");