]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/compat/pr83487-1_y.c
Move gcc.dg/compat dg-skip-if to *_main.c files
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / compat / pr83487-1_y.c
CommitLineData
92ca6f74 1#include "pr83487-1.h"
2
3struct A a;
4struct B b;
5struct C c;
6
7extern void f1 (int i, int j, int k, int l, int m, int n, int o, struct A);
8extern void f2 (int i, int j, int k, int l, int m, int n, int o, struct A, int p, int q);
9extern void f3 (int i, int j, int k, int l, int m, int n, int o, struct B, int p, int q);
10extern void f4 (int i, int j, int k, int l, int m, int n, int o, struct C, int p, int q);
11extern void f5 (int o, struct A);
12extern void f6 (int o, struct A, int p, int q);
13extern void f7 (int o, struct B, int p, int q);
14extern void f8 (int o, struct C, int p, int q);
15
16void
17do_test ()
18{
19 f1 (6, 0, 1, 2, 3, 4, 5, a);
20 f2 (6, 0, 1, 2, 3, 4, 5, a, 7, 8);
21 f3 (6, 0, 1, 2, 3, 4, 5, b, 7, 8);
22 f4 (6, 0, 1, 2, 3, 4, 5, c, 7, 8);
23 f5 (5, a);
24 f6 (5, a, 7, 8);
25 f7 (5, b, 7, 8);
26 f8 (5, c, 7, 8);
27}