cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-rounding-round.c
blob017a0e4c5c43a00c3a1e49d8a65ab716ec92ad5f
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_double } */
3 /* { dg-require-effective-target vect_call_round } */
5 #define N 32
7 void
8 foo (double *output, double *input)
10 int i = 0;
11 /* Vectorizable. */
12 for (i = 0; i < N; i++)
13 output[i] = __builtin_round (input[i]);
16 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_call_round } } } */