Xamarin Public Jenkins (auto-signing) e19d552987 Imported Upstream version 5.18.0.161
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
2018-10-19 08:34:24 +00:00

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" }