aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/scalar-by-value-4_main.c
blob: 8164b44283a0f8fee51c3898e49a7f538b37921b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Test passing scalars by value.  This test includes _Complex types
   whose real and imaginary parts cannot be used in variable-length
   argument lists.  */

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

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