* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr58387.c
blob74c32dfaf10d717df4ccf7a1be3f8a311cb25d41
1 extern void abort(void);
3 int a = -1;
5 int main ()
7 int b = a == 0 ? 0 : -a;
8 if (b < 1)
9 abort ();
10 return 0;