OSDN Git Service

PR tree-optimization/40542
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / no-math-errno-vect-pow-1.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_double } */
3
4 double x[256];
5
6 void foo(void)
7 {
8   int i;
9   for (i=0; i<256; ++i)
10     x[i] = __builtin_pow (x[i], 0.5);
11 }
12
13 /* { dg-final { scan-tree-dump "pattern recognized" "vect" { xfail spu*-*-* } } } */
14 /* { dg-final { cleanup-tree-dump "vect" } } */