1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/Linker/Inputs/metadata-attach.ll
Peter Collingbourne 1085bb25fe Linker: Remove unnecessary call to copyMetadata in IRLinker::linkGlobalVariable.
This was causing us to create duplicate metadata on global variables.
Debug info test case by Adrian Prantl, additional test cases by me.

Fixes PR31012.

Differential Revision: https://reviews.llvm.org/D26622

llvm-svn: 286905
2016-11-14 23:18:38 +00:00

20 lines
280 B
LLVM

@g1 = external global i32, !attach !0
@g2 = global i32 1, !attach !0
@g3 = global i32 2, !attach !0
declare !attach !0 void @f1()
define void @f2() !attach !0 {
call void @f1()
store i32 0, i32* @g1
ret void
}
define void @f3() !attach !0 {
ret void
}
!0 = !{i32 1}