[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr46728-7.c
blob2b7d0940a0f1015e2a44cc419d62ac9bf7e80d3e
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ffast-math -fno-inline -fno-unroll-loops -lm -mpowerpc-gpopt -fno-ident" } */
4 #include <math.h>
6 extern void abort (void);
8 #define NVALS 6
10 static double
11 convert_it_1 (double x)
13 return pow (x, 1.5);
16 static double
17 convert_it_2 (double x)
19 return pow (x, 2.5);
22 static double
23 convert_it_3 (double x)
25 return pow (x, -0.5);
28 static double
29 convert_it_4 (double x)
31 return pow (x, 10.5);
34 int
35 main (int argc, char *argv[])
37 double values[NVALS] = { 3.0, 1.95, 2.227, 4.0, 256.0, .0008797 };
38 unsigned i;
40 for (i = 0; i < NVALS; i++)
42 if (convert_it_1 (values[i]) != sqrt (values[i]) * __builtin_powi (values[i], 1))
43 abort ();
44 if (convert_it_2 (values[i]) != sqrt (values[i]) * __builtin_powi (values[i], 2))
45 abort ();
46 if (convert_it_3 (values[i]) != sqrt (values[i]) * __builtin_powi (values[i], -1))
47 abort ();
48 if (convert_it_4 (values[i]) != sqrt (values[i]) * __builtin_powi (values[i], 10))
49 abort ();
52 return 0;
56 /* { dg-final { scan-assembler-times "sqrt" 5 { target powerpc*-*-* } } } */
57 /* { dg-final { scan-assembler-not "bl\[\\. \]+pow" { target powerpc*-*-* } } } */