struct-complex-1_main.c   [plain text]


/* { 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