Xamarin Public Jenkins (auto-signing) 8e12397d70 Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
2018-11-16 08:20:38 +00:00

21 lines
525 B
LLVM

; RUN: opt %s -inline -S | FileCheck %s
define internal void @inner() "probe-stack"="__probestackinner" {
ret void
}
define void @outerNoAttribute() {
call void @inner()
ret void
}
define void @outerConflictingAttribute() "probe-stack"="__probestackouter" {
call void @inner()
ret void
}
; CHECK: define void @outerNoAttribute() #0
; CHECK: define void @outerConflictingAttribute() #1
; CHECK: attributes #0 = { "probe-stack"="__probestackinner" }
; CHECK: attributes #1 = { "probe-stack"="__probestackouter" }