diff options
author | Tom Tromey <tromey@redhat.com> | 2010-03-10 18:27:00 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-03-10 18:27:00 +0000 |
commit | e38df1d074456c912b31d672bde73afcea5b5c92 (patch) | |
tree | 0caa4647ecc72597b0cb74e51b73221ae875f541 /gdb/psympriv.h | |
parent | ccefe4c44c4b2d1bc88757fba90ff59eb017a074 (diff) | |
download | gdb-e38df1d074456c912b31d672bde73afcea5b5c92.zip gdb-e38df1d074456c912b31d672bde73afcea5b5c92.tar.gz gdb-e38df1d074456c912b31d672bde73afcea5b5c92.tar.bz2 |
* 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 42fa427..52f6e03 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 */ |