mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-29 04:53:56 +08:00
* buildsym.c (add_free_pendings): Remove.
* buildsym.h (add_free_pendings): Remove.
This commit is contained in:
parent
aab322dbad
commit
34431a2aa1
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user