aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM64/elf-calls.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM64/elf-calls.ll')
-rw-r--r--test/CodeGen/ARM64/elf-calls.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGen/ARM64/elf-calls.ll b/test/CodeGen/ARM64/elf-calls.ll
deleted file mode 100644
index 8c4020327b..0000000000
--- a/test/CodeGen/ARM64/elf-calls.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: llc -mtriple=arm64-linux-gnu -o - %s | FileCheck %s
-; RUN: llc -mtriple=arm64-linux-gnu -filetype=obj -o - %s | llvm-objdump -triple=arm64-linux-gnu - -r | FileCheck %s --check-prefix=CHECK-OBJ
-
-declare void @callee()
-
-define void @caller() {
- call void @callee()
- ret void
-; CHECK-LABEL: caller:
-; CHECK: bl callee
-; CHECK-OBJ: R_AARCH64_CALL26 callee
-}
-
-define void @tail_caller() {
- tail call void @callee()
- ret void
-; CHECK-LABEL: tail_caller:
-; CHECK: b callee
-; CHECK-OBJ: R_AARCH64_JUMP26 callee
-}