mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Also document the attribute, since "probe-stack" already is. Reviewed By: majnemer Differential Revision: https://reviews.llvm.org/D34528 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306069 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
712 B
LLVM
30 lines
712 B
LLVM
; RUN: opt %s -inline -S | FileCheck %s
|
|
|
|
define internal void @innerSmall() "stack-probe-size"="4096" {
|
|
ret void
|
|
}
|
|
|
|
define internal void @innerLarge() "stack-probe-size"="8192" {
|
|
ret void
|
|
}
|
|
|
|
define void @outerNoAttribute() {
|
|
call void @innerSmall()
|
|
ret void
|
|
}
|
|
|
|
define void @outerConflictingAttributeSmall() "stack-probe-size"="4096" {
|
|
call void @innerLarge()
|
|
ret void
|
|
}
|
|
|
|
define void @outerConflictingAttributeLarge() "stack-probe-size"="8192" {
|
|
call void @innerSmall()
|
|
ret void
|
|
}
|
|
|
|
; CHECK: define void @outerNoAttribute() #0
|
|
; CHECK: define void @outerConflictingAttributeSmall() #0
|
|
; CHECK: define void @outerConflictingAttributeLarge() #0
|
|
; CHECK: attributes #0 = { "stack-probe-size"="4096" }
|