5 // We failed to compile this because CFG cleanup left the switch
6 // statement intact, whereas expand_case expected at least one
7 // in-range case to remain.
9 typedef enum _SECStatus {
16 SEC_ERROR_BAD_SIGNATURE = (-0x2000) + 10
20 void f(SECStatus status)
24 case SEC_ERROR_BAD_SIGNATURE :
25 // This case can be optimized away in C++ (but apparently not in
26 // C), because the enum type is defined with a narrow range.