No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / compat / union-by-value-1_main.c
blobcd9065920f634d42b74b06030f257ea784d67879
1 /* Test function argument passing. This was written when correcting
2 a deviation from the ABI on SPARC64 between 3.3 and 3.4. */
4 extern void union_by_value_1_x (void);
5 extern void exit (int);
6 int fails;
8 int
9 main ()
11 union_by_value_1_x ();
12 exit (0);