switch4.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 31 行
C
31 行
// { dg-do compile }// PR c++/20008// We failed to compile this because CFG cleanup left the switch// statement intact, whereas expand_case expected at least one// in-range case to remain.typedef enum _SECStatus { SECWouldBlock = -2, SECFailure = -1, SECSuccess = 0} SECStatus;typedef enum { SEC_ERROR_BAD_SIGNATURE = (-0x2000) + 10} SECErrorCodes;void g(void);void f(SECStatus status){ switch( status ) { case SEC_ERROR_BAD_SIGNATURE : // This case can be optimized away in C++ (but apparently not in // C), because the enum type is defined with a narrow range. g(); break ; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?