From: Stan Shebs Date: Sun, 31 Jan 1999 23:29:13 +0000 (+0000) Subject: * buildsym.c (merge_symbol_lists): Remove unused variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3cc3e6e6dd47562a934d6406ef0850d29d48909;p=binutils-gdb.git * buildsym.c (merge_symbol_lists): Remove unused variable. (_initialize_buildsym): Remove, does nothing. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 586fd1a136d..c95e4e3efa6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Sun Jan 31 15:24:24 1999 Stan Shebs + + * buildsym.c (merge_symbol_lists): Remove unused variable. + (_initialize_buildsym): Remove, does nothing. + 1999-01-31 J.T. Conklin * i386-stub.c, m32r-stub.c, m68k-stub.c, sh-stub.c, sparc-stub.c, diff --git a/gdb/buildsym.c b/gdb/buildsym.c index f494b5417ff..c67dd4c8efc 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -1,6 +1,5 @@ /* Support routines for building symbol tables in GDB's internal format. - Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1995, 1996 - Free Software Foundation, Inc. + Copyright 1986-1999 Free Software Foundation, Inc. This file is part of GDB. @@ -1114,7 +1113,6 @@ merge_symbol_lists (srclist, targetlist) struct pending ** targetlist; { register int i; - register struct pending * link; if (!srclist || !*srclist) return; @@ -1156,10 +1154,3 @@ buildsym_new_init () { buildsym_init (); } - -/* Initializer for this module */ - -void -_initialize_buildsym () -{ -}