2005-04-02 07:35:00 +02:00
|
|
|
; Make sure this testcase codegens to the fabs instruction, not a call to fabsf
|
2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -march=x86 -mattr=-sse2,-sse3,-sse | grep fabs\$ | \
|
2007-09-26 23:12:10 +02:00
|
|
|
; RUN: count 2
|
2010-07-16 00:07:12 +02:00
|
|
|
; RUN: llc < %s -march=x86 -mattr=-sse,-sse2,-sse3 -enable-unsafe-fp-math -enable-no-nans-fp-math | \
|
2007-09-26 23:12:10 +02:00
|
|
|
; RUN: grep fabs\$ | count 3
|
2005-04-02 07:35:00 +02:00
|
|
|
|
2007-09-26 23:12:10 +02:00
|
|
|
declare float @fabsf(float)
|
2006-08-30 00:01:39 +02:00
|
|
|
|
2007-09-26 23:12:10 +02:00
|
|
|
declare x86_fp80 @fabsl(x86_fp80)
|
2005-04-02 07:35:00 +02:00
|
|
|
|
2007-09-26 23:12:10 +02:00
|
|
|
define float @test1(float %X) {
|
|
|
|
%Y = call float @fabsf(float %X)
|
2005-04-02 07:35:00 +02:00
|
|
|
ret float %Y
|
|
|
|
}
|
|
|
|
|
2007-09-26 23:12:10 +02:00
|
|
|
define double @test2(double %X) {
|
|
|
|
%Y = fcmp oge double %X, -0.0
|
2009-06-05 00:49:04 +02:00
|
|
|
%Z = fsub double -0.0, %X
|
2007-09-26 23:12:10 +02:00
|
|
|
%Q = select i1 %Y, double %X, double %Z
|
2005-04-09 06:55:14 +02:00
|
|
|
ret double %Q
|
|
|
|
}
|
|
|
|
|
2007-09-26 23:12:10 +02:00
|
|
|
define x86_fp80 @test3(x86_fp80 %X) {
|
|
|
|
%Y = call x86_fp80 @fabsl(x86_fp80 %X)
|
|
|
|
ret x86_fp80 %Y
|
|
|
|
}
|
|
|
|
|
|
|
|
|