You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
350 B
17 lines
350 B
; 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
|
|
|