value_from_contents for final conversion.
+2011-07-13 Tom Tromey <tromey@redhat.com>
+
+ * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>: Use
+ value_from_contents for final conversion.
+
2011-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
Code cleanup.
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;