* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / struct-complex-2_main.c
blob74eae62423bb85765e53108569902b4e01b498aa
1 /* { dg-options "-O" } */
3 #ifdef __x86_64__
4 /* Test function argument passing. PR target/39678. */
6 extern void struct_complex_2_x (void);
7 extern void exit (int);
9 int
10 main ()
12 struct_complex_2_x ();
13 exit (0);
15 #else
16 int
17 main ()
19 return 0;
21 #endif