summaryrefslogtreecommitdiff
path: root/gdb/dwarf2expr.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-06-22 13:38:19 +0000
committerTom Tromey <tromey@redhat.com>2011-06-22 13:38:19 +0000
commit55066f0271b40fc765d44dfa5063c41698bee2d8 (patch)
tree73a53390059f7e6cc44bdd2148f76bd5d8362c35 /gdb/dwarf2expr.c
parentc962cbad8818e9ad034067160b074e97f8b367cb (diff)
downloadgdb-55066f0271b40fc765d44dfa5063c41698bee2d8.tar.gz
* dwarf2expr.c (execute_stack_op) <DW_OP_GNU_convert>: Treat type
argument of 0 specially.
Diffstat (limited to 'gdb/dwarf2expr.c')
-rw-r--r--gdb/dwarf2expr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/dwarf2expr.c b/gdb/dwarf2expr.c
index 23389b8b31d..c5ea85da802 100644
--- a/gdb/dwarf2expr.c
+++ b/gdb/dwarf2expr.c
@@ -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);