Remove use of ELF_ST_OTHER.
authorNick Clifton <nickc@redhat.com>
Tue, 22 Feb 2000 19:56:41 +0000 (19:56 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 22 Feb 2000 19:56:41 +0000 (19:56 +0000)
binutils/ChangeLog
binutils/readelf.c
include/elf/ChangeLog
include/elf/common.h

index ac00cfc59a7f21d63d8acbc148a4d919bdc7c9de..7a8aa07c776b8a73b0fe67029fd93ea028c42514 100644 (file)
@@ -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>:
index f766976aa8b4c9fbf2c862f07d59c616d1437b23..2c53b460d43d47da71d7e539d4603076e73331f7 100644 (file)
@@ -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);
 
index 04b38e1d3928445be8ce72c6dce361abeef90870..54df0cf2a978ee9dfbbdeb72cc27a742bb70401b 100644 (file)
@@ -1,3 +1,9 @@
+2000-02-22  Nick Clifton  <nickc@cygnus.com>
+
+       * common.h (ELF_ST_OTHER): Remove definition.
+       (ELF32_ST_OTHER): Remove definition.
+       (ELF64_ST_OTHER): Remove definition.
+
 2000-02-22  H.J. Lu  <hjl@gnu.org>
 
        * common.h (ELFOSABI_LINUX): Define.
index 74fd7b22d4d811b8e9beb846f50a142c4aa2a81b..0ff2d8d58be2f06ee50241432407624bc57a2ba7 100644 (file)
@@ -317,12 +317,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
    the st_other field.  The STV_ defines specificy the actual visibility.  */
 
 #define ELF_ST_VISIBILITY(v)           ((v) & 0x3)
-#define ELF_ST_OTHER(o)                        ((o) & ~0x3)
+/* The remaining bits in the st_other field are not currently used.
+   They should be set to zero.  */
 
 #define ELF32_ST_VISIBILITY  ELF_ST_VISIBILITY
-#define ELF32_ST_OTHER       ELF_ST_OTHER
 #define ELF64_ST_VISIBILITY  ELF_ST_VISIBILITY
-#define ELF64_ST_OTHER       ELF_ST_OTHER
 
 
 #define STN_UNDEF      0               /* undefined symbol index */
This page took 0.04321 seconds and 4 git commands to generate.