aboutsummaryrefslogtreecommitdiff
path: root/gdb/psympriv.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-10-22 16:47:27 -0600
committerTom Tromey <tom@tromey.com>2020-01-26 16:40:21 -0700
commit6d94535fc68e1fd06816c5685166ebcec56119ce (patch)
tree1d799652296048be6aa06b923cc4a2520bc653d6 /gdb/psympriv.h
parent6f17252b76dbe8bedd32b6df6ce52af707bfb04b (diff)
downloadgdb-6d94535fc68e1fd06816c5685166ebcec56119ce.zip
gdb-6d94535fc68e1fd06816c5685166ebcec56119ce.tar.gz
gdb-6d94535fc68e1fd06816c5685166ebcec56119ce.tar.bz2
Change some psymtab fields to bool
This changes a few fields in partial_symtab to have type bool. gdb/ChangeLog 2020-01-26 Tom Tromey <tom@tromey.com> * xcoffread.c (xcoff_psymtab_to_symtab_1): Update. * psymtab.c (psym_print_stats): Update. * psympriv.h (struct partial_symtab) <readin, psymtabs_addrmap_supported, anonymous>: Now bool. * mdebugread.c (psymtab_to_symtab_1): Update. * dwarf2read.c (create_type_unit_group, create_partial_symtab) (build_type_psymtabs_reader, psymtab_to_symtab_1) (process_full_comp_unit, process_full_type_unit): Update. * dbxread.c (dbx_psymtab_to_symtab_1): Update. * ctfread.c (psymtab_to_symtab): Update. Change-Id: I206761d083493589049ea0bc785ed6542339234d
Diffstat (limited to 'gdb/psympriv.h')
-rw-r--r--gdb/psympriv.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/psympriv.h b/gdb/psympriv.h
index dc89db2..ce28112 100644
--- a/gdb/psympriv.h
+++ b/gdb/psympriv.h
@@ -239,21 +239,21 @@ struct partial_symtab
int statics_offset = 0;
int n_static_syms = 0;
- /* Non-zero if the symtab corresponding to this psymtab has been
- readin. This is located here so that this structure packs better
- on 64-bit systems. */
+ /* True if the symtab corresponding to this psymtab has been readin.
+ This is located here so that this structure packs better on
+ 64-bit systems. */
- unsigned char readin = 0;
+ bool readin = false;
/* True iff objfile->psymtabs_addrmap is properly populated for this
partial_symtab. For discontiguous overlapping psymtabs is the only usable
info in PSYMTABS_ADDRMAP. */
- unsigned char psymtabs_addrmap_supported = 0;
+ bool psymtabs_addrmap_supported = false;
/* True if the name of this partial symtab is not a source file name. */
- unsigned char anonymous = 0;
+ bool anonymous = false;
/* A flag that is temporarily used when searching psymtabs. */