Change value::m_lazy to bool

This changes value::m_lazy to be a bool and updates the various uses.

Reviewed-By: Bruno Larsen <blarsen@redhat.com>
This commit is contained in:
Tom Tromey
2023-02-14 09:37:47 -07:00
parent b2227e67b4
commit a5b210cb69
5 changed files with 15 additions and 15 deletions

View File

@ -1366,7 +1366,7 @@ value_of_dwarf_reg_entry (struct type *type, frame_info_ptr frame,
memcpy (val->contents_raw ().data (),
outer_val->contents_raw ().data (),
checked_type->length ());
val->set_lazy (0);
val->set_lazy (false);
return val;
}