* dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>: Use

value_from_contents for final conversion.
This commit is contained in:
Tom Tromey
2011-07-13 16:51:22 +00:00
parent 9a771b671f
commit d1b66e6d73
2 changed files with 8 additions and 1 deletions

View File

@ -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;