mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 10:09:16 +08:00
* dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>: Use
value_from_contents for final conversion.
This commit is contained in:
@ -1221,7 +1221,9 @@ execute_stack_op (struct dwarf_expr_context *ctx,
|
||||
|
||||
type = dwarf_get_base_type (ctx, type_die, 0);
|
||||
result = (ctx->read_reg) (ctx->baton, reg);
|
||||
result_val = value_from_ulongest (type, result);
|
||||
result_val = value_from_ulongest (address_type, result);
|
||||
result_val = value_from_contents (type,
|
||||
value_contents_all (result_val));
|
||||
}
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user