summaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-03-07 18:26:06 -0700
committerTom Tromey <tom@tromey.com>2023-03-11 08:48:29 -0700
commitddc6677b170be399dfcc7d81325870ff022ba875 (patch)
tree1152a15de8b893033b69ee48da454a25c58a3f1a /gdb/symtab.h
parent82c5090c61ed2a4a6cd37e575ae66323e0a837f7 (diff)
downloadbinutils-gdb-ddc6677b170be399dfcc7d81325870ff022ba875.tar.gz
Change linetable_entry::is_stmt to bool
This changes linetable_entry::is_stmt to type bool, rather than unsigned. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 9fc9527d21d..005b64b5a08 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -1575,7 +1575,7 @@ struct linetable_entry
int line;
/* True if this PC is a good location to place a breakpoint for LINE. */
- unsigned is_stmt : 1;
+ bool is_stmt : 1;
/* True if this location is a good location to place a breakpoint after a
function prologue. */