summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/tailcall.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2012-06-01 04:58:50 +0000
committerChris Lattner <sabre@nondot.org>2012-06-01 04:58:50 +0000
commite109648880e1768140f9bdb4b3ac6c15e405140e (patch)
tree9c94f60e9f0191d8772b7dabb3926e6ce6e40d3a /test/CodeGen/X86/tailcall.ll
parent763a75dbf719242e7f99c6447d20b9bffb75dfa2 (diff)
downloadllvm-e109648880e1768140f9bdb4b3ac6c15e405140e.tar.gz
llvm-e109648880e1768140f9bdb4b3ac6c15e405140e.tar.bz2
llvm-e109648880e1768140f9bdb4b3ac6c15e405140e.tar.xz
rename test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157794 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/tailcall.ll')
-rw-r--r--test/CodeGen/X86/tailcall.ll40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/CodeGen/X86/tailcall.ll b/test/CodeGen/X86/tailcall.ll
new file mode 100644
index 0000000000..f7ff5d5308
--- /dev/null
+++ b/test/CodeGen/X86/tailcall.ll
@@ -0,0 +1,40 @@
+; RUN: llc < %s -march=x86 -tailcallopt | grep TAILCALL | count 5
+
+; With -tailcallopt, CodeGen guarantees a tail call optimization
+; for all of these.
+
+declare fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4)
+
+define fastcc i32 @tailcaller(i32 %in1, i32 %in2) nounwind {
+entry:
+ %tmp11 = tail call fastcc i32 @tailcallee(i32 %in1, i32 %in2, i32 %in1, i32 %in2)
+ ret i32 %tmp11
+}
+
+declare fastcc i8* @alias_callee()
+
+define fastcc noalias i8* @noalias_caller() nounwind {
+ %p = tail call fastcc i8* @alias_callee()
+ ret i8* %p
+}
+
+declare fastcc noalias i8* @noalias_callee()
+
+define fastcc i8* @alias_caller() nounwind {
+ %p = tail call fastcc noalias i8* @noalias_callee()
+ ret i8* %p
+}
+
+declare fastcc i32 @i32_callee()
+
+define fastcc i32 @ret_undef() nounwind {
+ %p = tail call fastcc i32 @i32_callee()
+ ret i32 undef
+}
+
+declare fastcc void @does_not_return()
+
+define fastcc i32 @noret() nounwind {
+ tail call fastcc void @does_not_return()
+ unreachable
+}