linux-packaging-mono/external/llvm/test/Verifier/metadata-function-prof.ll
Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

16 lines
346 B
LLVM

; RUN: not llvm-as %s -disable-output 2>&1 | FileCheck %s
; CHECK: function declaration may not have a !prof attachment
declare !prof !0 void @f1()
define void @f2() !prof !0 {
unreachable
}
; CHECK: function must have a single !prof attachment
define void @f3() !prof !0 !prof !0 {
unreachable
}
!0 = !{!"function_entry_count", i64 100}