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 | c22158d | 2006-05-24 00:49:32 +0000 | [diff] [blame] | 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 |
Chris Lattner | 597f22f | 2005-04-02 05:35:00 +0000 | [diff] [blame] | 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 | |
Chris Lattner | 2e6027c | 2005-04-09 04:55:14 +0000 | [diff] [blame] | 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 | |