tree-if-conv.c: fix ICE seen with -fno-tree-forwprop (PR tree-optimization/84178)
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr42730.c
blob89aaafe870a6c123e60efe4df3ced45878fbdb8d
1 union bzz
3 unsigned *pa;
4 void *pv;
5 };
7 void foo (void)
9 union bzz u;
10 void **x;
11 void *y = 0;
12 x = &u.pv;
13 *x = y;