annotate gcc/testsuite/gcc.dg/compat/scalar-return-3_main.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test function return values. This test includes _Complex types
kono
parents:
diff changeset
2 whose real and imaginary parts can be used in variable-length
kono
parents:
diff changeset
3 argument lists. */
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 extern void scalar_return_3_x (void);
kono
parents:
diff changeset
6 extern void exit (int);
kono
parents:
diff changeset
7 int fails;
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 int
kono
parents:
diff changeset
10 main ()
kono
parents:
diff changeset
11 {
kono
parents:
diff changeset
12 scalar_return_3_x ();
kono
parents:
diff changeset
13 exit (0);
kono
parents:
diff changeset
14 }