From b087e0edae4136e8cfcaa8e11c382d87eb3aebf4 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 12 May 2011 19:32:47 +0000 Subject: [PATCH] * dwarf2expr.c (execute_stack_op) : Unconditionally cast left-hand-side to unsigned. --- gdb/ChangeLog | 5 +++++ gdb/dwarf2expr.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d0cf7f3..ab2ecde 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2011-05-12 Tom Tromey + * dwarf2expr.c (execute_stack_op) : Unconditionally + cast left-hand-side to unsigned. + +2011-05-12 Tom Tromey + PR gdb/12617: * value.h (value_from_contents): Declare. * value.c (value_from_contents): New function. diff --git a/gdb/dwarf2expr.c b/gdb/dwarf2expr.c index 226cb1d..0c0760b 100644 --- a/gdb/dwarf2expr.c +++ b/gdb/dwarf2expr.c @@ -979,7 +979,7 @@ execute_stack_op (struct dwarf_expr_context *ctx, case DW_OP_shr: dwarf_require_integral (value_type (first)); dwarf_require_integral (value_type (second)); - if (value_type (first) == address_type) + if (!TYPE_UNSIGNED (value_type (first))) { struct type *utype = get_unsigned_type (ctx->gdbarch, value_type (first)); -- 2.7.4