OSDN Git Service

2008-07-07 H.J. Lu <hongjiu.lu@intel.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / compat / scalar-by-value-1_main.c
1 /* Test passing scalars by value.  This test includes scalar types that
2    are supported by va_arg.  */
3
4 extern void scalar_by_value_1_x (void);
5 extern void exit (int);
6 int fails;
7
8 int
9 main ()
10 {
11   scalar_by_value_1_x ();
12   exit (0);
13 }