1 /* PR middle-end/64421 */
2 /* { dg-require-effective-target vect_simd_clones } */
3 /* { dg-additional-options "-fopenmp-simd" } */
4 /* { dg-additional-options "-mavx" { target avx_runtime } } */
8 #pragma omp declare simd linear (y) notinbranch
9 int foo (int x
, int y
) __asm ("bar");
11 #pragma omp declare simd linear (y) notinbranch
18 int a
[1024] = { 1, 2 };
26 for (i
= 0; i
< 1024; i
++)
28 if (a
[0] != 1 || a
[1] != 3)
31 for (i
= 2; i
< 1024; i
++)