From 5ed3149cb0ad923cf2dd9e593ebd3b68970927e0 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Sun, 19 Aug 2001 00:09:46 +0000 Subject: [PATCH] unwind-dw2.c (execute_stack_op): Add default aborts to the inner switches to prevent warnings. * unwind-dw2.c (execute_stack_op): Add default aborts to the inner switches to prevent warnings. From-SVN: r45014 --- gcc/ChangeLog | 5 +++++ gcc/unwind-dw2.c | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 390955df943..61ff995418a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-18 Zack Weinberg + + * unwind-dw2.c (execute_stack_op): Add default aborts to + the inner switches to prevent warnings. + 2001-08-18 Richard Henderson * timevar.h (struct timevar_time_def): Change element type to float. 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;