diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-24 11:12:20 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-11-24 11:12:20 -0700 |
commit | 26abc753cd1eb1349f6fa053caab016c93ca5302 (patch) | |
tree | 3b88d92efe5087b62cc52e6815e80b831c2cfccb /gdb/symfile.c | |
parent | 48d4af36c5fd9f9801fb91d7ca31f8d004939c09 (diff) | |
download | gdb-26abc753cd1eb1349f6fa053caab016c93ca5302.zip gdb-26abc753cd1eb1349f6fa053caab016c93ca5302.tar.gz gdb-26abc753cd1eb1349f6fa053caab016c93ca5302.tar.bz2 |
Use bool in require_partial_symbols
This changes require_partial_symbols to use bool as its parameter
type.
gdb/ChangeLog
2019-11-24 Tom Tromey <tom@tromey.com>
* symfile.c (read_symbols): Update.
* psymtab.c (require_partial_symbols): Change type of "verbose" to
bool.
(psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
(psym_lookup_symbol, psym_find_last_source_symtab)
(psym_forget_cached_source_info, psym_print_stats)
(psym_expand_symtabs_for_function, psym_expand_all_symtabs)
(psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
(psym_map_matching_symbols, psym_expand_symtabs_matching)
(psym_find_compunit_symtab_by_address)
(maintenance_print_psymbols, maintenance_info_psymtabs)
(maintenance_check_psymtabs): Update.
* psymtab.h (require_partial_symbols): Change type of "verbose" to
bool.
Change-Id: Iae87aa5e4590706bb9e90a33adb86f1fe0fbf3c7
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index e6b34bc..aec07d7 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -809,7 +809,7 @@ read_symbols (struct objfile *objfile, symfile_add_flags add_flags) } } if ((add_flags & SYMFILE_NO_READ) == 0) - require_partial_symbols (objfile, 0); + require_partial_symbols (objfile, false); } /* Initialize entry point information for this objfile. */ |