* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / ifcvt-onecmpl-abs-1.c
blob679e552f8482db43f0401c04249da619fb00cf5d
2 extern void abort(void);
4 __attribute__ ((noinline))
5 int foo(int n)
7 if (n < 0)
8 n = ~n;
10 return n;
13 int main(void)
15 if (foo (-1) != 0)
16 abort ();
18 return 0;