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.
13 lines
303 B
13 lines
303 B
4 months ago
|
; RUN: llc -mtriple=thumbv7-windows -verify-machineinstrs %s -o - \
|
||
|
; RUN: | FileCheck %s
|
||
|
|
||
|
define arm_aapcs_vfpcc void @check_watermark() "no-stack-arg-probe" {
|
||
|
entry:
|
||
|
%buffer = alloca [4096 x i8], align 1
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
; CHECK: check_watermark:
|
||
|
; CHECK-NOT: bl __chkstk
|
||
|
; CHECK: sub.w sp, sp, #4096
|