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