1 /* { dg-xfail-if "Can not call system libm.a with -msoft-float" { powerpc-*-aix* rs6000-*-aix* } { "-msoft-float" } { "" } } */
2 #include <math.h>
3 
main()4 main()
5 {
6   volatile double a;
7   double c;
8   a = 32.0;
9   c = pow(a, 1.0/3.0);
10   if (c + 0.1 > 3.174802
11       && c - 0.1 < 3.174802)
12     exit (0);
13   else
14     abort ();
15 }
16