1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Linker/Inputs/comdat14.ll
Rafael Espindola 5354070607 Don't copy information from aliasee to alias.
They are independent.

llvm-svn: 254541
2015-12-02 20:03:17 +00:00

13 lines
171 B
LLVM

$c = comdat any
@v2 = weak dllexport global i32 0, comdat ($c)
define i32* @f2() {
ret i32* @v2
}
@v3 = weak alias i32, i32* @v2
define i32* @f3() {
ret i32* @v3
}