OSDN Git Service

* xcoffread.c (scan_xcoff_symtab): Ignore symbols beginning with
authornsd <nsd>
Thu, 12 Apr 2001 19:53:09 +0000 (19:53 +0000)
committernsd <nsd>
Thu, 12 Apr 2001 19:53:09 +0000 (19:53 +0000)
"@".

gdb/ChangeLog
gdb/xcoffread.c

index e026c67..276b1a1 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-12  Nicholas Duffek  <nsd@redhat.com>
+
+       * xcoffread.c (scan_xcoff_symtab): Ignore symbols beginning with
+       "@".
+
 2001-04-12  Kevin Buettner  <kevinb@redhat.com>
 
        * config/i386/fbsd.mh (NATDEPFILES): Add i386-nat.o.
index 0b3c707..586f258 100644 (file)
@@ -2243,8 +2243,14 @@ scan_xcoff_symtab (struct objfile *objfile)
            else
              csect_aux = main_aux[0];
 
-           /* If symbol name starts with ".$" or "$", ignore it.  */
-           if (namestring[0] == '$'
+           /* If symbol name starts with ".$" or "$", ignore it. 
+
+              A symbol like "@FIX1" introduces a section for -bbigtoc jump
+              tables, which contain anonymous linker-generated code. 
+              Ignore those sections to avoid "pc 0x... in read in psymtab,
+              but not in symtab" warnings from find_pc_sect_symtab.  */
+
+           if (namestring[0] == '$' || namestring[0] == '@'
                || (namestring[0] == '.' && namestring[1] == '$'))
              break;