aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/struct-complex-2_main.c
blob: 74eae62423bb85765e53108569902b4e01b498aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-options "-O" } */

#ifdef __x86_64__
/* Test function argument passing.  PR target/39678.  */

extern void struct_complex_2_x (void);
extern void exit (int);

int
main ()
{
  struct_complex_2_x ();
  exit (0);
}
#else
int
main ()
{
  return 0;
}
#endif