diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-14 16:13:33 +0200 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-14 16:14:35 +0200 |
commit | 690098826e36cbadf618e15eed5f6ebf606cbf74 (patch) | |
tree | 7ac03d173f42a03dce55c377ada3dff49d616c02 /gdb/dwarf2loc.c | |
parent | 1e467161932b6385b51d0bd365a91cf205b399b9 (diff) | |
download | fsf-binutils-gdb-690098826e36cbadf618e15eed5f6ebf606cbf74.zip fsf-binutils-gdb-690098826e36cbadf618e15eed5f6ebf606cbf74.tar.gz fsf-binutils-gdb-690098826e36cbadf618e15eed5f6ebf606cbf74.tar.bz2 |
Make dwarf_stack_value::in_stack_memory a bool
Replace int with bool, because that's what it is.
gdb/ChangeLog:
* dwarf2expr.h (dwarf_expr_piece) <v.mem.in_stack_memory>:
Change type to bool.
(dwarf_stack_value) <in_stack_memory>: Likewise.
(dwarf_expr_context) <push_address>: Change parameter type to
bool.
<fetch_in_stack_memory>: Change return type to bool.
<push>: Change parameter type to bool.
* dwarf2expr.c (dwarf_expr_context::push): Change parameter type
to bool.
(dwarf_expr_context::push_address): Likewise.
(dwarf_expr_context::fetch_in_stack_memory): Change return type
to bool.
(dwarf_expr_context::execute_stack_op): Adjust.
* dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Adjust.
Diffstat (limited to 'gdb/dwarf2loc.c')
-rw-r--r-- | gdb/dwarf2loc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2loc.c b/gdb/dwarf2loc.c index cfbea3c..3c2f6aa 100644 --- a/gdb/dwarf2loc.c +++ b/gdb/dwarf2loc.c @@ -2441,7 +2441,7 @@ dwarf2_evaluate_loc_desc_full (struct type *type, struct frame_info *frame, { struct type *ptr_type; CORE_ADDR address = ctx.fetch_address (0); - int in_stack_memory = ctx.fetch_in_stack_memory (0); + bool in_stack_memory = ctx.fetch_in_stack_memory (0); /* DW_OP_deref_size (and possibly other operations too) may create a pointer instead of an address. Ideally, the |