diff options
author | Tom Tromey <tromey@redhat.com> | 2010-03-10 18:26:59 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-03-10 18:26:59 +0000 |
commit | 8af6e1c333c15ece19956929e190bac93c974947 (patch) | |
tree | 3b3f30d090ab1679990e13846f6526af7adb8199 /gdb/psympriv.h | |
parent | 2cdbbe44126601596aad7891de05cb7fc6bb21c8 (diff) | |
download | gdb-8af6e1c333c15ece19956929e190bac93c974947.tar.gz |
* xcoffread.c (xcoff_start_psymtab): Update.
(xcoff_end_psymtab): Update.
* psymtab.c (allocate_psymtab): Remove dead code.
* psympriv.h (struct partial_symtab) <read_symtab_private>: Now
void*.
* mdebugread.c (parse_partial_symbols): Update.
(new_psymtab): Likewise.
* dwarf2read.c (process_psymtab_comp_unit): Update.
(psymtab_to_symtab_1): Update.
* dbxread.c (start_psymtab): Update.
(end_psymtab): Likewise.
Diffstat (limited to 'gdb/psympriv.h')
-rw-r--r-- | gdb/psympriv.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/psympriv.h b/gdb/psympriv.h index 42fa4270c15..52f6e03c69a 100644 --- a/gdb/psympriv.h +++ b/gdb/psympriv.h @@ -140,10 +140,9 @@ struct partial_symtab /* Information that lets read_symtab() locate the part of the symbol table that this psymtab corresponds to. This information is private to the format-dependent symbol reading routines. For further detail examine - the various symbol reading modules. Should really be (void *) but is - (char *) as with other such gdb variables. (FIXME) */ + the various symbol reading modules. */ - char *read_symtab_private; + void *read_symtab_private; /* Non-zero if the symtab corresponding to this psymtab has been readin */ |