1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/Linker/Inputs/visibility.ll
Rafael Espindola 498510808d Revert r221096 bringing back r221014 with a fix.
The issue was that linkAppendingVarProto does the full linking job, including
deleting the old dst variable. The fix is just to call it and return early
if we have a GV with appending linkage.

original message:

    Refactor duplicated code in liking GlobalValues.

    There is quiet a bit of logic that is common to any GlobalValue but was
    duplicated for Functions, GlobalVariables and GlobalAliases.

    While at it, merge visibility even when comdats are used, fixing pr21415.

llvm-svn: 221098
2014-11-02 13:28:57 +00:00

27 lines
449 B
LLVM

$c1 = comdat any
; Variables
@v1 = weak hidden global i32 0
@v2 = weak protected global i32 0
@v3 = weak hidden global i32 0
@v4 = hidden global i32 1, comdat $c1
; Aliases
@a1 = weak hidden alias i32* @v1
@a2 = weak protected alias i32* @v2
@a3 = weak hidden alias i32* @v3
; Functions
define weak hidden void @f1() {
entry:
ret void
}
define weak protected void @f2() {
entry:
ret void
}
define weak hidden void @f3() {
entry:
ret void
}