summaryrefslogtreecommitdiff
path: root/gcc/unwind-dw2.c
diff options
context:
space:
mode:
authoramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-27 07:26:49 +0000
committeramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-27 07:26:49 +0000
commit89640de28631707c0d9ea142b0145a4a728747f6 (patch)
tree2600ef4e7a9b69562c35a510c11a08e937a91c47 /gcc/unwind-dw2.c
parent07c37a35a7e226d2383f2032d177f509fb7d0062 (diff)
downloadgcc-89640de28631707c0d9ea142b0145a4a728747f6.tar.gz
* unwind-dw2.c (execute_stack_op): Add missing cases for
DW_OP_shl, DW_OP_shr, DW_OP_shra, DW_OP_xor. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94314 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-dw2.c')
-rw-r--r--gcc/unwind-dw2.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/unwind-dw2.c b/gcc/unwind-dw2.c
index 9ad61dbd6be..4ffdd02cd20 100644
--- a/gcc/unwind-dw2.c
+++ b/gcc/unwind-dw2.c
@@ -1,5 +1,5 @@
/* DWARF2 exception handling and frame unwind runtime interface routines.
- Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+ Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
Free Software Foundation, Inc.
This file is part of GCC.
@@ -626,6 +626,10 @@ execute_stack_op (const unsigned char *op_ptr, const unsigned char *op_end,
case DW_OP_mul:
case DW_OP_or:
case DW_OP_plus:
+ case DW_OP_shl:
+ case DW_OP_shr:
+ case DW_OP_shra:
+ case DW_OP_xor:
case DW_OP_le:
case DW_OP_ge:
case DW_OP_eq: