blob: aabfddad43f3653daf31a5e2e92d2a5144d0cc63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
typedef int v8si __attribute__ ((vector_size (32)));
int
foo(v8si c, v8si d)
{
l0:
if (c[2])
d ^= c;
return d[3];
}
|