* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr56837.c
bloba6ce2af71ad8948778efefb431aa1fc0602caadd
1 extern void abort (void);
2 _Complex int a[1024];
4 __attribute__((noinline, noclone)) void
5 foo (void)
7 int i;
8 for (i = 0; i < 1024; i++)
9 a[i] = -1;
12 int
13 main ()
15 int i;
16 foo ();
17 for (i = 0; i < 1024; i++)
18 if (a[i] != -1)
19 abort ();
20 return 0;