PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / fast-math-vect-pow-1.c
blob6da61daa81226d2f7fcae13314d41e0fd31ad87d
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_float } */
4 float x[256];
6 void foo(void)
8 int i;
9 for (i=0; i<256; ++i)
10 x[i] = x[i] * x[i];
13 /* { dg-final { scan-tree-dump "vectorized 1 loops" "vect" } } */