diff options
author | Doug Evans <dje@google.com> | 2008-04-03 18:19:16 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-04-03 18:19:16 +0000 |
commit | f73634e546146a5176f76153a72c3d12dfc3ae68 (patch) | |
tree | 7002bf1f1b2b6736fd8efbbd6362b35ed1b1b497 /gdb/symtab.h | |
parent | 5f69259ea4a8fa974292170d02e3500cd7c3d038 (diff) | |
download | gdb-f73634e546146a5176f76153a72c3d12dfc3ae68.zip gdb-f73634e546146a5176f76153a72c3d12dfc3ae68.tar.gz gdb-f73634e546146a5176f76153a72c3d12dfc3ae68.tar.bz2 |
* symtab.h (enum free_code): Delete free_contents, unused.
* symmisc.c (free_symtab_block): Delete.
(free_symtab, case free_code): Delete.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index c19e741..9fec2e7 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -809,7 +809,6 @@ struct symtab char *dirname; /* This component says how to free the data we point to: - free_contents => do a tree walk and free each object. free_nothing => do nothing; some other symtab will free the data this one uses. free_linetable => free just the linetable. FIXME: Is this redundant @@ -817,7 +816,7 @@ struct symtab enum free_code { - free_nothing, free_contents, free_linetable + free_nothing, free_linetable } free_code; |