summaryrefslogtreecommitdiff
path: root/release_23/test/CodeGen/X86/tailcallpic1.ll
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/CodeGen/X86/tailcallpic1.ll')
-rw-r--r--release_23/test/CodeGen/X86/tailcallpic1.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/release_23/test/CodeGen/X86/tailcallpic1.ll b/release_23/test/CodeGen/X86/tailcallpic1.ll
deleted file mode 100644
index 54074eb0ba2a..000000000000
--- a/release_23/test/CodeGen/X86/tailcallpic1.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llvm-as < %s | llc -tailcallopt -mtriple=i686-pc-linux-gnu -relocation-model=pic | grep TAILCALL
-
-define protected fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4) {
-entry:
- ret i32 %a3
-}
-
-define fastcc i32 @tailcaller(i32 %in1, i32 %in2) {
-entry:
- %tmp11 = tail call fastcc i32 @tailcallee( i32 %in1, i32 %in2, i32 %in1, i32 %in2 ) ; <i32> [#uses=1]
- ret i32 %tmp11
-}