summaryrefslogtreecommitdiff
path: root/gdb/mipsread.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2013-09-25 22:48:19 +0000
committerDoug Evans <dje@google.com>2013-09-25 22:48:19 +0000
commitc256e171654791e456088ccb4c83d183650d8940 (patch)
treef71a1f5875963eb8eff25aefb51e2fcb454128c4 /gdb/mipsread.c
parentf56ce88372c4b5848638bab8b10b71042725a100 (diff)
* symfile.h (struct sym_fns): Delete member "sym_flavour".
All uses updated. (add_symtab_fns): Update prototype. * symfile.c (sym_fns_ptr): Delete. Replace with ... (registered_sym_fns): ... this. (symtab_fns): Update. (add_symtab_fns): New arg "flavour". All callers updated. (find_sym_fns): Rewrite to use new sym_fns registry.
Diffstat (limited to 'gdb/mipsread.c')
-rw-r--r--gdb/mipsread.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/mipsread.c b/gdb/mipsread.c
index b425780bbd..fc4a268c31 100644
--- a/gdb/mipsread.c
+++ b/gdb/mipsread.c
@@ -405,7 +405,6 @@ read_alphacoff_dynamic_symtab (struct section_offsets *section_offsets,
static const struct sym_fns ecoff_sym_fns =
{
- bfd_target_ecoff_flavour,
mipscoff_new_init, /* init anything gbl to entire symtab */
mipscoff_symfile_init, /* read initial info, setup for sym_read() */
mipscoff_symfile_read, /* read a symbol file into symtab */
@@ -425,5 +424,5 @@ void _initialize_mipsread (void);
void
_initialize_mipsread (void)
{
- add_symtab_fns (&ecoff_sym_fns);
+ add_symtab_fns (bfd_target_ecoff_flavour, &ecoff_sym_fns);
}