diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-22 19:56:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-22 19:56:41 +0000 |
commit | ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe (patch) | |
tree | 09fe21223e746af798da9bb8b59718ee280acce4 /binutils | |
parent | 14e0eb3bb92db46bca37430fa8e6bb012a0f5a22 (diff) | |
download | ppe42-binutils-ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe.tar.gz ppe42-binutils-ca47b30c873c5b07e3c3b1a4be34d9618ce5d7fe.zip |
Remove use of ELF_ST_OTHER.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 10 |
2 files changed, 8 insertions, 6 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ac00cfc59a..7a8aa07c77 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-02-22 Nick Clifton <nickc@cygnus.com> + + * readelf.c (process_symbol_table): Remove use of ELF_ST_OTHER. + 2000-02-22 Ian Lance Taylor <ian@zembu.com> From Brad Lucier <lucier@math.purdue.edu>: diff --git a/binutils/readelf.c b/binutils/readelf.c index f766976aa8..2c53b460d4 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -4180,9 +4180,9 @@ process_symbol_table (file) printf (_("\nSymbol table for image:\n")); if (is_32bit_elf) - printf (_(" Num Buc: Value Size Type Bind Vis Ot Ndx Name\n")); + printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n")); else - printf (_(" Num Buc: Value Size Type Bind Vis Ot Ndx Name\n")); + printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n")); for (hn = 0; hn < nbuckets; hn++) { @@ -4203,7 +4203,6 @@ process_symbol_table (file) printf (" %6s", get_symbol_type (ELF_ST_TYPE (psym->st_info))); printf (" %6s", get_symbol_binding (ELF_ST_BIND (psym->st_info))); printf (" %3s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other))); - printf (" %2d", ELF_ST_OTHER (psym->st_other)); printf (" %3.3s", get_symbol_index_type (psym->st_shndx)); printf (" %s\n", dynamic_strings + psym->st_name); } @@ -4231,9 +4230,9 @@ process_symbol_table (file) SECTION_NAME (section), (unsigned long) (section->sh_size / section->sh_entsize)); if (is_32bit_elf) - printf (_(" Num: Value Size Type Bind Vis Ot Ndx Name\n")); + printf (_(" Num: Value Size Type Bind Vis Ndx Name\n")); else - printf (_(" Num: Value Size Type Bind Vis Ot Ndx Name\n")); + printf (_(" Num: Value Size Type Bind Vis Ndx Name\n")); symtab = GET_ELF_SYMBOLS (file, section->sh_offset, section->sh_size / section->sh_entsize); @@ -4263,7 +4262,6 @@ process_symbol_table (file) printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info))); printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info))); printf (" %-3s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other))); - printf (" %2d", ELF_ST_OTHER (psym->st_other)); printf (" %4s", get_symbol_index_type (psym->st_shndx)); printf (" %s", strtab + psym->st_name); |