make this test more interesting
[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 -disable-pattern-isel=0 | grep 'fabs$' | wc -l | grep 2
3
4 declare float %fabsf(float)
5
6 float %fabsftest(float %X) {
7         %Y = call float %fabsf(float %X)
8         ret float %Y
9 }
10
11 double %fabstest2(double %X) {
12         %Y = setge double %X, -0.0
13         %Z = sub double -0.0, %X
14         %Q = select bool %Y, double %X, double %Z
15         ret double %Q
16 }
17