blob: c1e0140292045193f8324bf0e590327d1e57bee9 [file] [log] [blame]
/* PR tree-optimization/105770 */
/* { dg-do compile } */
/* { dg-options "-O1 -funswitch-loops -fno-tree-forwprop" } */
char a;
void
foo (void)
{
while (a)
switch (a)
{
case ' ':
case '\t':
return;
}
__builtin_unreachable ();
}