* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr59387.c
blobe226cf112507dad69a72274a6f930df8c89415d1
1 /* PR tree-optimization/59387 */
3 int a, *d, **e = &d, f;
4 char c;
5 struct S { int f1; } b;
7 int
8 main ()
10 for (a = -19; a; a++)
12 for (b.f1 = 0; b.f1 < 24; b.f1++)
13 c--;
14 *e = &f;
15 if (!d)
16 return 0;
18 return 0;