diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-09-10 15:37:50 -0500 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-09-11 12:43:45 -0500 |
commit | 67547d896b0593b0fa62e23ac68c483a7e8566e2 (patch) | |
tree | 669833e9a12c28896bd0003424a07e1c032a8892 /gdb/symtab.c | |
parent | 64b2d4a0a4e4f80d2aa2e52c6eec3186e76fc397 (diff) | |
download | gdb-67547d896b0593b0fa62e23ac68c483a7e8566e2.zip gdb-67547d896b0593b0fa62e23ac68c483a7e8566e2.tar.gz gdb-67547d896b0593b0fa62e23ac68c483a7e8566e2.tar.bz2 |
Change the type of copy_names from int to bool
This parameter is really a boolean, so change the type accordingly
and update the callers.
This is for symbol_set_names, add_psymbol_to_bcache, and
add_psymbol_to_list.
minimal_symbol_reader::record_full was already passing a bool
to symbol_set_names.
gdb/ChangeLog:
2019-09-11 Christian Biesinger <cbiesinger@google.com>
* dbxread.c (read_dbx_symtab): Update.
* dwarf2read.c (load_partial_dies): Update.
* mdebugread.c (parse_partial_symbols): Update.
(handle_psymbol_enumerators): Update.
* psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
* psymtab.c (add_psymbol_to_bcache): Likewise.
(add_psymbol_to_list): Likewise.
* symtab.c (symbol_set_names): Likewise.
* symtab.h (symbol_set_names): Likewise.
* xcoffread.c (scan_xcoff_symtab): Update.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index e1bf369..4b528b4 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -811,7 +811,7 @@ symbol_find_demangled_name (struct general_symbol_info *gsymbol, void symbol_set_names (struct general_symbol_info *gsymbol, - const char *linkage_name, int len, int copy_name, + const char *linkage_name, int len, bool copy_name, struct objfile_per_bfd_storage *per_bfd) { struct demangled_name_entry **slot; |