blob: 0070057c32db8c84387724350e7bcd6b7db35325 [file] [log] [blame]
/* PR tree-optimization/105218 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
int a, c;
void bar (void);
void
foo (void)
{
int b = 131;
if (a)
b = c == 2 ? 1 : c;
while (b)
bar ();
}