One of these xforms is only safe with unsafe math enabled.
[oota-llvm.git] / test / CodeGen / X86 / fabs.ll
1 ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
2 ; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse2,-sse3 | grep 'fabs$' | wc -l | grep 1 && 
3 ; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse2,-sse3 -enable-unsafe-fp-math  | grep 'fabs$' | wc -l | grep 2
4
5 declare float %fabsf(float)
6
7 float %fabsftest(float %X) {
8         %Y = call float %fabsf(float %X)
9         ret float %Y
10 }
11
12 double %fabstest2(double %X) {
13         %Y = setge double %X, -0.0
14         %Z = sub double -0.0, %X
15         %Q = select bool %Y, double %X, double %Z
16         ret double %Q
17 }
18