Unused local variables in xcoffread.c:read_xcoff_symtab
authorJoel Brobecker <brobecker@gnat.com>
Wed, 18 Apr 2012 00:24:57 +0000 (00:24 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Wed, 18 Apr 2012 00:24:57 +0000 (00:24 +0000)
gdb/ChangeLog:

        * xcoffread.c (read_xcoff_symtab): Delete variables
        last_csect_val and last_csect_sec and associated code.

gdb/ChangeLog
gdb/xcoffread.c

index ac7921793ef593c9278a8635e067b4b7da92dd6a..e065689c56510c852af4f726ca71ee2c8aac65a2 100644 (file)
@@ -1,3 +1,8 @@
+2012-04-17  Joel Brobecker  <brobecker@adacore.com>
+
+       * xcoffread.c (read_xcoff_symtab): Delete variables
+       last_csect_val and last_csect_sec and associated code.
+
 2012-04-17  Doug Evans  <dje@google.com>
 
        * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
index 86ae8fb188a058900717872715518c6e10d2c49b..fcabddb658b44cdf4e8b9a39499ae2e10dbdfe7f 100644 (file)
@@ -986,9 +986,7 @@ read_xcoff_symtab (struct partial_symtab *pst)
 
   char *filestring = " _start_ ";      /* Name of the current file.  */
 
-  const char *last_csect_name; /* Last seen csect's name and value.  */
-  CORE_ADDR last_csect_val;
-  int last_csect_sec;
+  const char *last_csect_name; /* Last seen csect's name.  */
 
   this_symtab_psymtab = pst;
 
@@ -998,7 +996,6 @@ read_xcoff_symtab (struct partial_symtab *pst)
 
   last_source_file = NULL;
   last_csect_name = 0;
-  last_csect_val = 0;
 
   start_stabs ();
   start_symtab (filestring, (char *) NULL, file_start_addr);
@@ -1171,14 +1168,8 @@ read_xcoff_symtab (struct partial_symtab *pst)
                                                SECT_OFF_TEXT (objfile));
                      file_end_addr = file_start_addr + CSECT_LEN (&main_aux);
 
-                     if (cs->c_name && (cs->c_name[0] == '.'
-                                        || cs->c_name[0] == '@'))
-                       {
-                         last_csect_name = cs->c_name;
-                         last_csect_val = cs->c_value;
-                         last_csect_sec = secnum_to_section (cs->c_secnum,
-                                                             objfile);
-                       }
+                     if (cs->c_name && (cs->c_name[0] == '.' || cs->c_name[0] == '@'))
+                       last_csect_name = cs->c_name;
                    }
                    continue;
 
This page took 0.028603 seconds and 4 git commands to generate.