PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-rounding-lfloor.c
blob84fda19ae5af941ac4ef181bf79d422e15a7e4a0
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_double } */
3 /* { dg-require-effective-target vect_call_lfloor } */
5 #define N 32
7 void
8 foo (long *output, double *input)
10 int i = 0;
11 /* Vectorizable. */
12 for (i = 0; i < N; i++)
13 output[i] = __builtin_lfloor (input[i]);
16 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_call_lfloor } } } */