Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / compat / struct-complex-1_main.c
blob92e886acf33cd603c1ae562aa833099cd2de3b7f
1 /* { dg-options "-O" } */
3 #ifdef __x86_64__
4 /* Test function argument passing. PR target/15302. */
6 extern void struct_complex_1_x (void);
7 extern void exit (int);
9 int
10 main ()
12 struct_complex_1_x ();
13 exit (0);
15 #else
16 int
17 main ()
19 return 0;
21 #endif