* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr39233.c
blob29f722395cfa7a803802b04eae34c8162c94dc1c
1 extern void abort (void);
3 __attribute__((noinline)) void
4 foo (void *p)
6 long l = (long) p;
7 if (l < 0 || l > 6)
8 abort ();
11 int
12 main ()
14 short i;
15 for (i = 6; i >= 0; i--)
16 foo ((void *) (long) i);
17 return 0;