mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
09ba28c27c
Metadata attachments to instructions cannot be function-local. This is part of PR21532. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223574 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
415 B
LLVM
16 lines
415 B
LLVM
; RUN: llvm-link %s %p/metadata-b.ll -S -o - | FileCheck %s
|
|
|
|
; CHECK: define void @foo(i32 %a)
|
|
; CHECK: ret void, !attach !0
|
|
; CHECK: define void @goo(i32 %b)
|
|
; CHECK: ret void, !attach !1
|
|
; CHECK: !0 = metadata !{i32 524334, void (i32)* @foo}
|
|
; CHECK: !1 = metadata !{i32 524334, void (i32)* @goo}
|
|
|
|
define void @foo(i32 %a) nounwind {
|
|
entry:
|
|
ret void, !attach !0
|
|
}
|
|
|
|
!0 = metadata !{i32 524334, void (i32)* @foo}
|