* buildsym.c (add_free_pendings): Remove.

* buildsym.h (add_free_pendings): Remove.
This commit is contained in:
Tom Tromey 2012-04-23 18:53:16 +00:00
parent aab322dbad
commit 34431a2aa1
3 changed files with 5 additions and 16 deletions

View file

@ -1,3 +1,8 @@
2012-04-23 Tom Tromey <tromey@redhat.com>
* buildsym.c (add_free_pendings): Remove.
* buildsym.h (add_free_pendings): Remove.
2012-04-23 Doug Evans <dje@google.com>
* dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in

View file

@ -101,20 +101,6 @@ static void record_pending_block (struct objfile *objfile,
/* Maintain the lists of symbols and blocks. */
/* Add a pending list to free_pendings. */
void
add_free_pendings (struct pending *list)
{
struct pending *link = list;
if (list)
{
while (link->next) link = link->next;
link->next = free_pendings;
free_pendings = list;
}
}
/* Add a symbol to one of the lists of symbols. */
void

View file

@ -233,8 +233,6 @@ EXTERN int type_vector_length;
#define INITIAL_TYPE_VECTOR_LENGTH 160
extern void add_free_pendings (struct pending *list);
extern void add_symbol_to_list (struct symbol *symbol,
struct pending **listhead);