OSDN Git Service

2003-05-16 Janis Johnson <janis187@us.ibm.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / compat / struct-by-value-7_main.c
1 /* Test structures passed by value, including to a function with a
2    variable-length argument lists.  All struct members are long double
3    scalars.  */
4
5 extern void struct_by_value_7_x (void);
6 extern void exit (int);
7
8 int
9 main ()
10 {
11   struct_by_value_7_x ();
12   exit (0);
13 }