2005-04-02 05:35:00 +00:00
|
|
|
; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
|
2007-04-15 22:20:47 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=-sse2,-sse3 | \
|
|
|
|
; RUN: grep fabs\$ | wc -l | grep 1
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | \
|
|
|
|
; RUN: llc -march=x86 -mattr=-sse2,-sse3 -enable-unsafe-fp-math | \
|
|
|
|
; RUN: grep fabs\$ | wc -l | grep 2
|
2005-04-02 05:35:00 +00:00
|
|
|
|
2006-08-29 22:01:39 +00:00
|
|
|
target endian = little
|
|
|
|
target pointersize = 32
|
|
|
|
|
2005-04-02 05:35:00 +00:00
|
|
|
declare float %fabsf(float)
|
|
|
|
|
2006-11-16 23:38:21 +00:00
|
|
|
float %test1(float %X) {
|
2005-04-02 05:35:00 +00:00
|
|
|
%Y = call float %fabsf(float %X)
|
|
|
|
ret float %Y
|
|
|
|
}
|
|
|
|
|
2006-11-16 23:38:21 +00:00
|
|
|
double %test2(double %X) {
|
2005-04-09 04:55:14 +00:00
|
|
|
%Y = setge double %X, -0.0
|
|
|
|
%Z = sub double -0.0, %X
|
|
|
|
%Q = select bool %Y, double %X, double %Z
|
|
|
|
ret double %Q
|
|
|
|
}
|
|
|
|
|