* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr58564.c
blob967ee95d4abc8b9a903c238087bf46dd107e5146
1 /* PR middle-end/58564 */
3 extern void abort (void);
4 int a, b;
5 short *c, **d = &c;
7 int
8 main ()
10 b = (0, 0 > ((&c == d) & (1 && (a ^ 1)))) | 0U;
11 if (b != 0)
12 abort ();
13 return 0;