Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / compat / struct-by-value-19_main.c
blobb0eed4c3a2ffcba2d7d1fa228f7617ae079d4ca5
1 /* Test structures passed by value, including to a function with a
2 variable-length argument list. Struct members are char, int, double,
3 and other structs containing these types. This test was written in
4 response to a layout change for such structs for powerpc64-linux,
5 but this test only checks similar structs that are not affected by
6 that break in compatibility. */
8 extern void struct_by_value_19_x (void);
9 extern void exit (int);
10 int fails;
12 int
13 main ()
15 struct_by_value_19_x ();
16 exit (0);