Chris Lattner | 597f22f | 2005-04-02 05:35:00 +0000 | [diff] [blame] | 1 | ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf |
Chris Lattner | 2e6027c | 2005-04-09 04:55:14 +0000 | [diff] [blame^] | 2 | ; RUN: llvm-as < %s | llc -march=x86 -disable-pattern-isel=0 | grep 'fabs$' | wc -l | grep 2 |
Chris Lattner | 597f22f | 2005-04-02 05:35:00 +0000 | [diff] [blame] | 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 | |
Chris Lattner | 2e6027c | 2005-04-09 04:55:14 +0000 | [diff] [blame^] | 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 | |