blob: ce524703d86d87b27636ddfd25b75df0e282f658 [file] [log] [blame]
/* PR rtl-optimization/17027 */
/* Origin: dbk <[email protected]> */
/* Testcase by Christian Ehrhardt <[email protected]> */
int bar(void);
void baz (void) __attribute__ ((noreturn)); /* noreturn is required */
void foo (void)
{
while (bar ()) {
switch (1) {
default:
baz ();
}
}
}