aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/Windows/long-calls.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/Windows/long-calls.ll')
-rw-r--r--test/CodeGen/ARM/Windows/long-calls.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/ARM/Windows/long-calls.ll b/test/CodeGen/ARM/Windows/long-calls.ll
deleted file mode 100644
index f56701df76c5..000000000000
--- a/test/CodeGen/ARM/Windows/long-calls.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llc -mtriple=thumbv7-windows -mcpu=cortex-a9 -relocation-model pic -mattr=+long-calls -o - %s \
-; RUN: | FileCheck %s
-
-declare arm_aapcs_vfpcc void @callee()
-
-define arm_aapcs_vfpcc void @caller() nounwind {
-entry:
- tail call void @callee()
- ret void
-}
-
-; CHECK-LABEL: caller
-; CHECK: ldr [[REG:r[0-9]+]], [[CPI:\.LCPI[_0-9]+]]
-; CHECK: bx [[REG]]
-; CHECK: .p2align 2
-; CHECK: [[CPI]]:
-; CHECK: .long callee
-