aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/macho-frame-offset.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/macho-frame-offset.ll')
-rw-r--r--test/CodeGen/ARM/macho-frame-offset.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/ARM/macho-frame-offset.ll b/test/CodeGen/ARM/macho-frame-offset.ll
deleted file mode 100644
index f3dacf66b6c3..000000000000
--- a/test/CodeGen/ARM/macho-frame-offset.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llc -mtriple thumbv7m-apple-macho -disable-fp-elim -o - %s | FileCheck %s
-
-define void @func() {
-; CHECK-LABEL: func:
-; CHECK: push {r6, r7, lr}
-; CHECK: add r7, sp, #4
- call void @bar()
- call void asm sideeffect "", "~{r11}"()
- ret void
-}
-
-declare void @bar()