]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* readelf.c (process_version_sections, process_symbol_table):
authorNick Clifton <nickc@redhat.com>
Mon, 14 Sep 2009 12:29:50 +0000 (12:29 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 14 Sep 2009 12:29:50 +0000 (12:29 +0000)
        Use symbolic constants.

binutils/ChangeLog
binutils/readelf.c

index 7962c5e4f82f58877910709e9002baeb92d13a58..40361635ba71d9eaf53b28bd9c0e0313bd8f7f6c 100644 (file)
@@ -1,3 +1,8 @@
+2009-09-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
+
+       * readelf.c (process_version_sections, process_symbol_table):
+       Use symbolic constants.
+
 2009-09-11  Nick Clifton  <nickc@redhat.com>
 
        * po/binutils.pot: Updated by the Translation project.
index afa7d2abe6622f6caa09008788d37e2669043c57..64630f5f7658a7942b0a9ea70ef582725823ce72 100644 (file)
@@ -6852,8 +6852,8 @@ process_version_sections (FILE * file)
                      break;
 
                    default:
-                     nn = printf ("%4x%c", data[cnt + j] & 0x7fff,
-                                  data[cnt + j] & 0x8000 ? 'h' : ' ');
+                     nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
+                                  data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
 
                      check_def = 1;
                      check_need = 1;
@@ -6947,10 +6947,10 @@ process_version_sections (FILE * file)
 
                              offset += ivd.vd_next;
                            }
-                         while (ivd.vd_ndx != (data[cnt + j] & 0x7fff)
+                         while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
                                 && ivd.vd_next != 0);
 
-                         if (ivd.vd_ndx == (data[cnt + j] & 0x7fff))
+                         if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
                            {
                              Elf_External_Verdaux evda;
                              Elf_Internal_Verdaux ivda;
@@ -7564,7 +7564,7 @@ process_symbol_table (FILE * file)
 
                  check_def = (psym->st_shndx != SHN_UNDEF);
 
-                 if ((vers_data & 0x8000) || vers_data > 1)
+                 if ((vers_data & VERSYM_HIDDEN) || vers_data > 1)
                    {
                      if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)]
                          && (is_nobits || ! check_def))
@@ -7656,7 +7656,7 @@ process_symbol_table (FILE * file)
 
                                  offset += ivd.vd_next;
                                }
-                             while (ivd.vd_ndx != (vers_data & 0x7fff)
+                             while (ivd.vd_ndx != (vers_data & VERSYM_VERSION)
                                     && ivd.vd_next != 0);
 
                              offset -= ivd.vd_next;
@@ -7668,7 +7668,7 @@ process_symbol_table (FILE * file)
                              ivda.vda_name = BYTE_GET (evda.vda_name);
 
                              if (psym->st_name != ivda.vda_name)
-                               printf ((vers_data & 0x8000)
+                               printf ((vers_data & VERSYM_HIDDEN)
                                        ? "@%s" : "@@%s",
                                        ivda.vda_name < strtab_size
                                        ? strtab + ivda.vda_name : "<corrupt>");