* dwarf2expr.c (execute_stack_op) <DW_OP_GNU_convert>: Treat type

argument of 0 specially.
This commit is contained in:
Tom Tromey 2011-06-22 13:38:21 +00:00
parent b138ce370d
commit c38c4bc5b2
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-06-22 Tom Tromey <tromey@redhat.com>
* dwarf2expr.c (execute_stack_op) <DW_OP_GNU_convert>: Treat type
argument of 0 specially.
2011-06-22 Yao Qi <yao@codesourcery.com>
* infrun.c (handle_inferior_event): Remove write-only local variable

View File

@ -1229,7 +1229,10 @@ execute_stack_op (struct dwarf_expr_context *ctx,
op_ptr = read_uleb128 (op_ptr, op_end, &type_die);
type = dwarf_get_base_type (ctx, type_die, 0);
if (type_die == 0)
type = address_type;
else
type = dwarf_get_base_type (ctx, type_die, 0);
result_val = dwarf_expr_fetch (ctx, 0);
dwarf_expr_pop (ctx);