diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-08-23 19:46:03 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-08-23 19:46:03 +0000 |
commit | a65650793674ee2f9bec154d6165fb50e17fd7ad (patch) | |
tree | 4da96f415dd37fab8b59022adfc11789c2eca92a /gdb/dbxread.c | |
parent | 3d7de4c290544ff00dc34cbff3400b988f0b0de6 (diff) | |
download | gdb-a65650793674ee2f9bec154d6165fb50e17fd7ad.zip gdb-a65650793674ee2f9bec154d6165fb50e17fd7ad.tar.gz gdb-a65650793674ee2f9bec154d6165fb50e17fd7ad.tar.bz2 |
Write ChangeLog entry for sef changes.
Remove dbxread.c change; I handle this in BFD by making the name start
with "a.out".
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index b55362e..81e3827 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -2184,18 +2184,6 @@ static struct sym_fns aout_sym_fns = NULL /* next: pointer to next struct sym_fns */ }; -static struct sym_fns netbsd386_sym_fns = -{ - "netbsd-386", /* sym_name: name or name prefix of BFD target type */ - 10, /* sym_namelen: number of significant sym_name chars */ - dbx_new_init, /* sym_new_init: init anything gbl to entire symtab */ - dbx_symfile_init, /* sym_init: read initial info, setup for sym_read() */ - dbx_symfile_read, /* sym_read: read a symbol file into symtab */ - dbx_symfile_finish, /* sym_finish: finished with file, cleanup */ - dbx_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */ - NULL /* next: pointer to next struct sym_fns */ -}; - static struct sym_fns bout_sym_fns = { "b.out", /* sym_name: name or name prefix of BFD target type */ @@ -2213,6 +2201,5 @@ _initialize_dbxread () { add_symtab_fns(&sunos_sym_fns); add_symtab_fns(&aout_sym_fns); - add_symtab_fns(&netbsd386_sym_fns); add_symtab_fns(&bout_sym_fns); } |