aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/struct-complex-1_main.c
blob: 92e886acf33cd603c1ae562aa833099cd2de3b7f (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/15302.  */

extern void struct_complex_1_x (void);
extern void exit (int);

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