remove unused field from struct elfinfo
authorTom Tromey <tromey@redhat.com>
Thu, 17 Oct 2013 15:41:46 +0000 (15:41 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 17 Oct 2013 15:41:46 +0000 (15:41 +0000)
I noticed that one field in elfread.c:struct elfinfo is unused.
This patch removes it.

* elfread.c (struct elfinfo) <stabindexsect>: Remove.
(elf_locate_sections): Update.

gdb/ChangeLog
gdb/elfread.c

index 4b7e02834ffe69a17e70ed1606bf61a0b319c07a..adf5dcca92d159cf659ef41f8857ecb4acc642d5 100644 (file)
@@ -1,3 +1,8 @@
+2013-10-17  Tom Tromey  <tromey@redhat.com>
+
+       * elfread.c (struct elfinfo) <stabindexsect>: Remove.
+       (elf_locate_sections): Update.
+
 2013-10-17  Yao Qi  <yao@codesourcery.com>
 
        * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
index 0095ad9731b750f1d0a97f0c4c3880155a3f3151..47602efb5534d03ad880cc63c0eac3f8198e097b 100644 (file)
@@ -60,7 +60,6 @@ static const struct sym_fns elf_sym_fns_lazy_psyms;
 struct elfinfo
   {
     asection *stabsect;                /* Section pointer for .stab section */
-    asection *stabindexsect;   /* Section pointer for .stab.index section */
     asection *mdebugsect;      /* Section pointer for .mdebug section */
   };
 
@@ -186,10 +185,6 @@ elf_locate_sections (bfd *ignore_abfd, asection *sectp, void *eip)
     {
       ei->stabsect = sectp;
     }
-  else if (strcmp (sectp->name, ".stab.index") == 0)
-    {
-      ei->stabindexsect = sectp;
-    }
   else if (strcmp (sectp->name, ".mdebug") == 0)
     {
       ei->mdebugsect = sectp;