Revert "[LoopVectorize] Add support for reverse loops in isDereferenceableAndAlignedI...
[llvm-project.git] / llvm / test / CodeGen / ARM / Windows / aapcs.ll
blobca3a8b1ef4a2e73331346902eb1373fd2df1ac73
1 ; RUN: llc -mtriple=thumbv7-windows-itanium -mcpu=cortex-a9 -o - %s | FileCheck %s
3 ; AAPCS mandates an 8-byte stack alignment.  The alloca is implicitly aligned,
4 ; and no bic is required.
6 declare void @callee(ptr %i)
8 define void @caller() {
9   %i = alloca i8, align 8
10   call void @callee(ptr %i)
11   ret void
14 ; CHECK: sub sp, #8
15 ; CHECK-NOT: bic