diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-04-11 14:39:16 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 21:00:29 -0700 |
| commit | b988b72ee49071c0cc1866e3f05a7e25351cbbd8 (patch) | |
| tree | ab639a69c298067d14f28c7d2f4ba3ce39605e2e | |
| parent | 37a1ce6946c7292450f3e527279c22f56f63c51f (diff) | |
| download | sparse-dev-b988b72ee49071c0cc1866e3f05a7e25351cbbd8.tar.gz | |
Remove unused symbol list. We'll soon re-introduce it in another form,
for doing same-id symbol type-checks.
| -rw-r--r-- | show-parse.c | 8 | ||||
| -rw-r--r-- | symbol.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/show-parse.c b/show-parse.c index 0784b155..e12c5711 100644 --- a/show-parse.c +++ b/show-parse.c @@ -103,14 +103,6 @@ void show_symbol_list(struct symbol_list *list, const char *sep) symbol_iterate(list, show_one_symbol, (void *)sep); } -void show_type_list(struct symbol *sym) -{ - while (sym) { - show_symbol(sym); - sym = sym->next; - } -} - struct type_name { char *start; char *end; @@ -68,7 +68,6 @@ struct symbol { struct token *arglist; }; struct ctype_symbol { - struct symbol *next; /* Next symbol at this level */ unsigned long offset; unsigned int bit_size; unsigned int bit_offset:8, |
