comparison gcc/testsuite/gcc.dg/compat/struct-by-value-8_main.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Test structures passed by value, including to a function with a
2 variable-length argument list. Each struct contains an array
3 of small structs with two scalar members. */
4
5 extern void struct_by_value_8_x (void);
6 extern void exit (int);
7 int fails;
8
9 int
10 main ()
11 {
12 struct_by_value_8_x ();
13 exit (0);
14 }