* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921017-1.c
blobc7fab5840b331344f9fc66bb0d5c422b02d16fae
1 /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
2 f(n)
4 int a[n];
5 int g(i)
7 return a[i];
9 a[1]=4711;
10 return g(1);
12 main()
14 #ifndef NO_TRAMPOLINES
15 if(f(2)!=4711)abort();
16 #endif
17 exit(0);