mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
1a347f2b7a
This extends the use of this attribute on ARM and AArch64 from SVN r325900 (where it was only checked for fixed stack allocations on ARM/AArch64, but for all stack allocations on X86). This also adds a testcase for the existing use of disabling the fixed stack probe with the attribute on ARM and AArch64. Differential Revision: https://reviews.llvm.org/D44291 llvm-svn: 327897
13 lines
291 B
LLVM
13 lines
291 B
LLVM
; RUN: llc -mtriple=aarch64-windows -verify-machineinstrs %s -o - \
|
|
; RUN: | FileCheck %s
|
|
|
|
define void @check_watermark() "no-stack-arg-probe" {
|
|
entry:
|
|
%buffer = alloca [4096 x i8], align 1
|
|
ret void
|
|
}
|
|
|
|
; CHECK: check_watermark:
|
|
; CHECK: sub sp, sp, #1, lsl #12
|
|
; CHECK-NOT: bl __chkstk
|