2010-04-16 15:57:50 +00:00
|
|
|
; RUN: opt < %s -tailcallelim -S | FileCheck %s
|
|
|
|
|
2007-09-10 20:58:55 +00:00
|
|
|
; Don't turn this into an infinite loop, this is probably the implementation
|
|
|
|
; of fabs and we expect the codegen to lower fabs.
|
2010-04-16 15:57:50 +00:00
|
|
|
; CHECK: @fabs(double %f)
|
|
|
|
; CHECK: call
|
|
|
|
; CHECK: ret
|
2007-09-10 20:58:55 +00:00
|
|
|
|
|
|
|
define double @fabs(double %f) {
|
|
|
|
entry:
|
|
|
|
%tmp2 = call double @fabs( double %f ) ; <double> [#uses=1]
|
|
|
|
ret double %tmp2
|
|
|
|
}
|
|
|
|
|
2010-04-16 15:57:50 +00:00
|
|
|
; Do turn other calls into infinite loops though.
|
|
|
|
|
2013-07-14 01:50:49 +00:00
|
|
|
; CHECK-LABEL: define double @foo(
|
2010-04-16 15:57:50 +00:00
|
|
|
; CHECK-NOT: call
|
|
|
|
; CHECK: }
|
|
|
|
define double @foo(double %f) {
|
|
|
|
%t= call double @foo(double %f)
|
|
|
|
ret double %t
|
|
|
|
}
|
|
|
|
|
2013-07-14 01:50:49 +00:00
|
|
|
; CHECK-LABEL: define float @fabsf(
|
2010-04-16 15:57:50 +00:00
|
|
|
; CHECK-NOT: call
|
|
|
|
; CHECK: }
|
|
|
|
define float @fabsf(float %f) {
|
|
|
|
%t= call float @fabsf(float 2.0)
|
|
|
|
ret float %t
|
|
|
|
}
|
|
|
|
|
|
|
|
declare x86_fp80 @fabsl(x86_fp80 %f)
|