Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / arm / vect-rounding-floorf.c
blob65347cc4ba2d75b9f944a8cd83b033d4d0b5c1b2
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_v8_neon_ok } */
3 /* { dg-options "-O2 -ffast-math -ftree-vectorize" } */
4 /* { dg-add-options arm_v8_neon } */
6 #define N 32
8 float __attribute__((aligned(16))) input[N];
9 float __attribute__((aligned(16))) output[N];
11 void
12 foo ()
14 int i = 0;
15 /* Vectorizable. */
16 for (i = 0; i < N; i++)
17 output[i] = __builtin_floorf (input[i]);
20 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_call_floorf } } } */