annotate gcc/testsuite/gcc.dg/compat/struct-by-value-8_main.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test structures passed by value, including to a function with a
kono
parents:
diff changeset
2 variable-length argument list. Each struct contains an array
kono
parents:
diff changeset
3 of small structs with two scalar members. */
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
4 /* { dg-skip-if "limited code space" { pdp11-*-* } } */
111
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 extern void struct_by_value_8_x (void);
kono
parents:
diff changeset
7 extern void exit (int);
kono
parents:
diff changeset
8 int fails;
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 int
kono
parents:
diff changeset
11 main ()
kono
parents:
diff changeset
12 {
kono
parents:
diff changeset
13 struct_by_value_8_x ();
kono
parents:
diff changeset
14 exit (0);
kono
parents:
diff changeset
15 }