summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/compat/struct-by-value-18_main.c
blob: 9bb19b33be476708c79bb958998eb2671d60d3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Test structures passed by value, including to a function with a
   variable-length argument lists.  All struct members are of type
   _Complex long double.  */
/* { dg-skip-if "Program too big" { "avr-*-*" } } */

extern void struct_by_value_18_x (void);
extern void exit (int);
int fails;

int
main ()
{
  struct_by_value_18_x ();
  exit (0);
}