diff options
author | Tom Tromey <tromey@redhat.com> | 2010-09-30 19:14:29 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-09-30 19:14:29 +0000 |
commit | 8d7231636f77e0631d4232d79b7e57ec69ae4c09 (patch) | |
tree | c61363a7eb79b6275b2b968daa2cf8ff29335844 /gdb/somread.c | |
parent | 4b8866f58d981ccfc841070c8a366661338db128 (diff) | |
download | gdb-8d7231636f77e0631d4232d79b7e57ec69ae4c09.tar.gz |
* symfile.h (struct sym_fns) <next>: Remove.
(add_symtab_fns): Update.
* symfile.c (sym_fns_ptr): New typedef.
(symtab_fns): Now a VEC.
(add_symtab_fns): Update. Change argument type.
(find_sym_fns): Update. Change return type.
(get_symfile_segment_data): Update.
* objfiles.h (struct objfile) <sf>: Now const.
* somread.c (som_sym_fns): Now const. Update.
* xcoffread.c (xcoff_sym_fns): Now const. Update.
* mipsread.c (ecoff_sym_fns): Now const. Update.
* machoread.c (macho_sym_fns): Now const. Update.
* elfread.c (elf_sym_fns): Now const. Update.
(elf_sym_fns_gdb_index): Likewise.
* dbxread.c (aout_sym_fns): Now const. Update.
* coffread.c (coff_sym_fns): Now const. Update.
Diffstat (limited to 'gdb/somread.c')
-rw-r--r-- | gdb/somread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index cc36042ca8b..779f5321d03 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -427,7 +427,7 @@ som_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs) /* Register that we are able to handle SOM object file formats. */ -static struct sym_fns som_sym_fns = +static const struct sym_fns som_sym_fns = { bfd_target_som_flavour, som_new_init, /* sym_new_init: init anything gbl to entire symtab */ @@ -439,8 +439,7 @@ static struct sym_fns som_sym_fns = a file. */ NULL, /* sym_read_linetable */ default_symfile_relocate, /* sym_relocate: Relocate a debug section. */ - &psym_functions, - NULL /* next: pointer to next struct sym_fns */ + &psym_functions }; void |