blob: 6519c9752fe9b4757a4e9a72c73145575610240b [file] [log] [blame]
/* { dg-do compile } */
struct {
unsigned a;
unsigned c;
} d;
int e, g;
void h(unsigned b) {
unsigned a, c;
while (e) {
if (b) {
++e;
continue;
}
c = g;
if (g)
a |= 10;
}
d.a = a;
d.c = c;
}