blob: 65a36564b2be8da2271b41b87a6e260e535a8053 [file] [log] [blame]
/* { dg-do compile } */
int a, b;
unsigned long c;
unsigned long *d;
void e();
void f()
{
if (c)
{
if (a)
{
e();
d[0] = c;
d[1] = b;
}
b = c;
}
}