PR ipa/61602
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr41094.c
blob2a4e9616cbfad648715c6b6ed902940d8299f979
1 /* { dg-do run } */
2 /* { dg-options "-ffast-math" } */
4 #include <math.h>
6 extern void abort (void);
8 double foo(void)
10 double x = -4.0;
11 return pow (x * x, 0.25);
14 int main()
16 if (foo() != 2.0)
17 abort ();
18 return 0;