* buildsym.c (merge_symbol_lists): Remove unused variable.

(_initialize_buildsym): Remove, does nothing.
This commit is contained in:
Stan Shebs
1999-01-31 23:29:13 +00:00
parent 3a70e50388
commit f3cc3e6e6d
2 changed files with 6 additions and 10 deletions

View File

@ -1,3 +1,8 @@
Sun Jan 31 15:24:24 1999 Stan Shebs <shebs@andros.cygnus.com>
* buildsym.c (merge_symbol_lists): Remove unused variable.
(_initialize_buildsym): Remove, does nothing.
1999-01-31 J.T. Conklin <jtc@redbacknetworks.com> 1999-01-31 J.T. Conklin <jtc@redbacknetworks.com>
* i386-stub.c, m32r-stub.c, m68k-stub.c, sh-stub.c, sparc-stub.c, * i386-stub.c, m32r-stub.c, m68k-stub.c, sh-stub.c, sparc-stub.c,

View File

@ -1,6 +1,5 @@
/* Support routines for building symbol tables in GDB's internal format. /* Support routines for building symbol tables in GDB's internal format.
Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1995, 1996 Copyright 1986-1999 Free Software Foundation, Inc.
Free Software Foundation, Inc.
This file is part of GDB. This file is part of GDB.
@ -1114,7 +1113,6 @@ merge_symbol_lists (srclist, targetlist)
struct pending ** targetlist; struct pending ** targetlist;
{ {
register int i; register int i;
register struct pending * link;
if (!srclist || !*srclist) if (!srclist || !*srclist)
return; return;
@ -1156,10 +1154,3 @@ buildsym_new_init ()
{ {
buildsym_init (); buildsym_init ();
} }
/* Initializer for this module */
void
_initialize_buildsym ()
{
}