aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/scalar-by-value-1_main.c
blob: 5272a379f4cb5ff5797b3107c02c6ac111a64f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test passing scalars by value.  This test includes scalar types that
   are supported by va_arg.  */

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

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