diff options
author | Tom Tromey <tromey@redhat.com> | 2011-05-12 19:32:47 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-05-12 19:32:47 +0000 |
commit | b087e0edae4136e8cfcaa8e11c382d87eb3aebf4 (patch) | |
tree | 4fa6bdf27378a9de8d9b55ba886555f2c5898530 /gdb | |
parent | 8a9b8146fd539229c51c6a4e5a4f682df2a630b0 (diff) | |
download | gdb-b087e0edae4136e8cfcaa8e11c382d87eb3aebf4.zip gdb-b087e0edae4136e8cfcaa8e11c382d87eb3aebf4.tar.gz gdb-b087e0edae4136e8cfcaa8e11c382d87eb3aebf4.tar.bz2 |
* dwarf2expr.c (execute_stack_op) <DW_OP_shr>: Unconditionally
cast left-hand-side to unsigned.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/dwarf2expr.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <tromey@redhat.com> + * dwarf2expr.c (execute_stack_op) <DW_OP_shr>: Unconditionally + cast left-hand-side to unsigned. + +2011-05-12 Tom Tromey <tromey@redhat.com> + 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)); |