You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In function value::resolve_indirect(DW_AT name) a local variableDW_FORM form is defined, so the resolve is performed on this local variable. The attribute DW_FORM form in class Value is not changed at all.
Due to this, I see an issue that when the form is indirect, it throws exception in function value::as_reference(): throw value_type_mismatch("cannot read " + to_string(typ) + " as reference");
The text was updated successfully, but these errors were encountered:
libelfin/dwarf/value.cc
Line 278 in 946dde5
In function
value::resolve_indirect(DW_AT name)
a local variableDW_FORM form
is defined, so the resolve is performed on this local variable. The attribute DW_FORM form inclass Value
is not changed at all.Due to this, I see an issue that when the form is indirect, it throws exception in function
value::as_reference():
throw value_type_mismatch("cannot read " + to_string(typ) + " as reference");
The text was updated successfully, but these errors were encountered: