aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/tailcall-fastisel.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/tailcall-fastisel.ll')
-rw-r--r--test/CodeGen/AArch64/tailcall-fastisel.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/AArch64/tailcall-fastisel.ll b/test/CodeGen/AArch64/tailcall-fastisel.ll
deleted file mode 100644
index 3ba639183161..000000000000
--- a/test/CodeGen/AArch64/tailcall-fastisel.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc < %s -mtriple=arm64-apple-darwin -O0 | FileCheck %s
-
-; CHECK: b _foo0
-
-define i32 @foo1() {
-entry:
- %call = tail call i32 @foo0()
- ret i32 %call
-}
-
-declare i32 @foo0()