summaryrefslogtreecommitdiffstats
path: root/llvm/test
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-16 15:57:50 +0000
committerDan Gohman <gohman@apple.com>2010-04-16 15:57:50 +0000
commit99e5327bfde76193ead176dc7c46e6257d52594d (patch)
tree073ca92951686facd574df9aae9286bf86a8e3b1 /llvm/test
parent5723516ce9eecdc78d41eb241dec3c00ee88e643 (diff)
downloadbcm5719-llvm-99e5327bfde76193ead176dc7c46e6257d52594d.tar.gz
bcm5719-llvm-99e5327bfde76193ead176dc7c46e6257d52594d.zip
Refine the detection of seemingly infinitely recursive calls where the
callee is expected to be expanded to something else by codegen, so that normal infinitely recursive calls are still transformed. llvm-svn: 101468
Diffstat (limited to 'llvm/test')
-rw-r--r--llvm/test/Transforms/TailCallElim/inf-recursion.ll26
1 files changed, 25 insertions, 1 deletions
diff --git a/llvm/test/Transforms/TailCallElim/inf-recursion.ll b/llvm/test/Transforms/TailCallElim/inf-recursion.ll
index a5f246d36ce..e4ac9283aec 100644
--- a/llvm/test/Transforms/TailCallElim/inf-recursion.ll
+++ b/llvm/test/Transforms/TailCallElim/inf-recursion.ll
@@ -1,6 +1,10 @@
-; RUN: opt < %s -tailcallelim -S | grep call
+; RUN: opt < %s -tailcallelim -S | FileCheck %s
+
; Don't turn this into an infinite loop, this is probably the implementation
; of fabs and we expect the codegen to lower fabs.
+; CHECK: @fabs(double %f)
+; CHECK: call
+; CHECK: ret
define double @fabs(double %f) {
entry:
@@ -8,3 +12,23 @@ entry:
ret double %tmp2
}
+; Do turn other calls into infinite loops though.
+
+; CHECK: define double @foo
+; CHECK-NOT: call
+; CHECK: }
+define double @foo(double %f) {
+ %t= call double @foo(double %f)
+ ret double %t
+}
+
+; CHECK: define float @fabsf
+; CHECK-NOT: call
+; CHECK: }
+define float @fabsf(float %f) {
+ %t= call float @fabsf(float 2.0)
+ ret float %t
+}
+
+declare float @fabsf(float %f)
+declare x86_fp80 @fabsl(x86_fp80 %f)
OpenPOWER on IntegriCloud