aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/Windows/aapcs.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/Windows/aapcs.ll')
-rw-r--r--test/CodeGen/ARM/Windows/aapcs.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/ARM/Windows/aapcs.ll b/test/CodeGen/ARM/Windows/aapcs.ll
deleted file mode 100644
index 3f9a09f8e7f5..000000000000
--- a/test/CodeGen/ARM/Windows/aapcs.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llc -mtriple=thumbv7-windows-itanium -mcpu=cortex-a9 -o - %s | FileCheck %s
-
-; AAPCS mandates an 8-byte stack alignment. The alloca is implicitly aligned,
-; and no bic is required.
-
-declare void @callee(i8 *%i)
-
-define void @caller() {
- %i = alloca i8, align 8
- call void @callee(i8* %i)
- ret void
-}
-
-; CHECK: sub sp, #8
-; CHECK-NOT: bic
-