blob: 34de83dac84d6b2859839b6dfcf9afdb926c9886 [file] [log] [blame]
/* { dg-do compile } */
int a[8], b;
void fn1(void)
{
int c;
for (; b; b++)
{
int d = a[b];
c = a[0] ? d : 0;
a[b] = c;
}
}