diff options
Diffstat (limited to 'gcc/unwind-dw2.c')
-rw-r--r-- | gcc/unwind-dw2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/unwind-dw2.c b/gcc/unwind-dw2.c index 16f6bceb5c9..c56116b62c4 100644 --- a/gcc/unwind-dw2.c +++ b/gcc/unwind-dw2.c @@ -563,6 +563,9 @@ execute_stack_op (const unsigned char *op_ptr, const unsigned char *op_end, op_ptr = read_uleb128 (op_ptr, &ptrtmp); reg = ptrtmp; result += reg; break; + + default: + abort (); } break; @@ -640,6 +643,9 @@ execute_stack_op (const unsigned char *op_ptr, const unsigned char *op_end, case DW_OP_ne: result = (_Unwind_Sword)first != (_Unwind_Sword)second; break; + + default: + abort (); } } break; |