annotate gcc/testsuite/gcc.dg/20040306-1.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 /* This used to ICE due to a reload bug on s390*. */
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 /* { dg-do compile } */
kono
parents:
diff changeset
4 /* { dg-options "-O2" } */
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
5 /* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
111
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 typedef struct test
kono
parents:
diff changeset
8 {
kono
parents:
diff changeset
9 unsigned short pad;
kono
parents:
diff changeset
10 unsigned char type[6];
kono
parents:
diff changeset
11 } t;
kono
parents:
diff changeset
12
kono
parents:
diff changeset
13 extern void set (t *a, t *b, t *c, t *d, t *e, t *f, t *g, t *h,
kono
parents:
diff changeset
14 t *i, t *j, t *k, t *l, t *m, t *n, t *o, t *p);
kono
parents:
diff changeset
15 extern void use (t a, t b, t c, t d, t e, t f, t g, t h,
kono
parents:
diff changeset
16 t i, t j, t k, t l, t m, t n, t o, t p);
kono
parents:
diff changeset
17 void test (void)
kono
parents:
diff changeset
18 {
kono
parents:
diff changeset
19 t a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p;
kono
parents:
diff changeset
20 set (&a, &b, &c, &d, &e, &f, &g, &h, &i, &j, &k, &l, &m, &n, &o, &p);
kono
parents:
diff changeset
21 use (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p);
kono
parents:
diff changeset
22 }