[pushed] Pass 'true' to set_is_argument
Checks
Commit Message
I noticed that set_is_argument accepts a bool but the one caller of it
passes the constant '1'. This patch changes it to use 'true' instead.
---
gdb/dwarf2/read.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
base-commit: 774c54454b1f7bf0bf2303bcb1370e4333300424
@@ -15762,7 +15762,7 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
struct context_stack *curr
= cu->get_builder ()->get_current_context_stack ();
if (curr != nullptr && curr->name != nullptr)
- sym->set_is_argument (1);
+ sym->set_is_argument (true);
attr = dwarf2_attr (die, DW_AT_location, cu);
if (attr != nullptr)
{