diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-01 17:37:30 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-03-15 16:02:07 -0600 |
commit | 3db066bcd5bac9a8d6be85ea4cfa8f52dbdcc600 (patch) | |
tree | f02e90d1b855a0277be4e00d47a0bc615bcf3b0c /gdb/coffread.c | |
parent | 2219ae0b0ebe14373850b000c2abaa31dab1d741 (diff) | |
download | gdb-3db066bcd5bac9a8d6be85ea4cfa8f52dbdcc600.zip gdb-3db066bcd5bac9a8d6be85ea4cfa8f52dbdcc600.tar.gz gdb-3db066bcd5bac9a8d6be85ea4cfa8f52dbdcc600.tar.bz2 |
Slightly simplify minsym creation
Only one caller of minimal_symbol_reader::record_with_info was using
the return value, so this patch simplifies this code by having it
return void and changing that caller to use record_full instead.
gdb/ChangeLog
2019-03-15 Tom Tromey <tom@tromey.com>
* minsyms.h (class minimal_symbol_reader) <record_with_info>:
Don't return the symbol.
* coffread.c (record_minimal_symbol): Use record_full.
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index b89c0e2..8c8e078 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -463,7 +463,8 @@ record_minimal_symbol (minimal_symbol_reader &reader, return NULL; } - return reader.record_with_info (cs->c_name, address, type, section); + return reader.record_full (cs->c_name, strlen (cs->c_name), true, address, + type, section); } /* coff_symfile_init () |