fortran/trans-openmp.cc: Use the correct member in gfc_omp_namelist [PR118745]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-simd-clone-21.c
blob49c52fb59bd191c330b4ff65dc0196f33fb12a03
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_simd_clones } */
3 /* { dg-additional-options "-fopenmp-simd" } */
5 #pragma omp declare simd simdlen(4) inbranch
6 __attribute__((noinline)) int
7 foo (int a, int b)
9 return a + b;
12 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 4 "vect" { target i?86-*-* x86_64-*-* } } } */
13 /* if-conversion shouldn't need to resort to masked stores for the result
14 array created by OMP lowering since that's automatic and does not have
15 its address taken. */
16 /* { dg-final { scan-tree-dump-not "MASK_STORE" "vect" } } */