mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-18 00:18:11 +00:00
* dwarf2expr.c (execute_stack_op): Add 'break' statements after
cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
This commit is contained in:
parent
cd9172901c
commit
99c87dab95
@ -1,3 +1,8 @@
|
||||
2004-05-21 Jim Blandy <jimb@redhat.com>
|
||||
|
||||
* dwarf2expr.c (execute_stack_op): Add 'break' statements after
|
||||
cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
|
||||
|
||||
2004-05-20 Jim Blandy <jimb@redhat.com>
|
||||
|
||||
* rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
|
||||
|
@ -575,6 +575,7 @@ execute_stack_op (struct dwarf_expr_context *ctx, unsigned char *op_ptr,
|
||||
break;
|
||||
case DW_OP_div:
|
||||
binop = BINOP_DIV;
|
||||
break;
|
||||
case DW_OP_minus:
|
||||
binop = BINOP_SUB;
|
||||
break;
|
||||
@ -595,6 +596,7 @@ execute_stack_op (struct dwarf_expr_context *ctx, unsigned char *op_ptr,
|
||||
break;
|
||||
case DW_OP_shr:
|
||||
binop = BINOP_RSH;
|
||||
break;
|
||||
case DW_OP_shra:
|
||||
binop = BINOP_RSH;
|
||||
val1 = value_from_longest (signed_address_type (), first);
|
||||
|
Loading…
x
Reference in New Issue
Block a user