OSDN Git Service

* symfile.c (allocate_symtab): Remove INIT_EXTRA_SYMTAB_INFO.
authorDaniel Jacobowitz <dan@debian.org>
Sun, 21 Jan 2007 01:02:03 +0000 (01:02 +0000)
committerDaniel Jacobowitz <dan@debian.org>
Sun, 21 Jan 2007 01:02:03 +0000 (01:02 +0000)
gdb/ChangeLog
gdb/symfile.c

index c929f44..c9d7091 100644 (file)
@@ -1,5 +1,9 @@
 2007-01-20  Daniel Jacobowitz  <dan@codesourcery.com>
 
+       * symfile.c (allocate_symtab): Remove INIT_EXTRA_SYMTAB_INFO.
+
+2007-01-20  Daniel Jacobowitz  <dan@codesourcery.com>
+
        * arch-utils.c (show_endian): Correct reversed condition.
 
 2007-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
index 37a57c8..1e7733b 100644 (file)
@@ -2506,14 +2506,6 @@ allocate_symtab (char *filename, struct objfile *objfile)
   symtab->next = objfile->symtabs;
   objfile->symtabs = symtab;
 
-  /* FIXME: This should go away.  It is only defined for the Z8000,
-     and the Z8000 definition of this macro doesn't have anything to
-     do with the now-nonexistent EXTRA_SYMTAB_INFO macro, it's just
-     here for convenience.  */
-#ifdef INIT_EXTRA_SYMTAB_INFO
-  INIT_EXTRA_SYMTAB_INFO (symtab);
-#endif
-
   return (symtab);
 }