Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-math-errno-slp-32.c
blobc952e7f1b11cf714d8af1f70ed42747cb2ffba36
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_double } */
4 double x[256];
6 void foo(void)
8 int i;
9 for (i=0; i<128; ++i)
11 x[2*i] = __builtin_pow (x[2*i], 0.5);
12 x[2*i+1] = __builtin_pow (x[2*i+1], 0.5);
16 /* { dg-final { scan-tree-dump "pattern recognized" "vect" { xfail spu*-*-* } } } */
17 /* { dg-final { cleanup-tree-dump "vect" } } */