* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr61517.c
blobfc9bbe85a4183732f1cc416555f0deeaed82a3ca
1 int a, b, *c = &a;
2 unsigned short d;
4 int
5 main ()
7 unsigned int e = a;
8 *c = 1;
9 if (!b)
11 d = e;
12 *c = d | e;
15 if (a != 0)
16 __builtin_abort ();
18 return 0;