mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
IR: Aliases don't belong to an explicit comdat
Aliases inherit their comdat from their aliasee, they don't have an explicit comdat. This fixes PR20279. llvm-svn: 212732
This commit is contained in:
parent
3d5d88a910
commit
d757d21cef
@ -1528,11 +1528,6 @@ void AssemblyWriter::printAlias(const GlobalAlias *GA) {
|
||||
writeOperand(Aliasee, !isa<ConstantExpr>(Aliasee));
|
||||
}
|
||||
|
||||
if (GA->hasComdat()) {
|
||||
Out << ", comdat ";
|
||||
PrintLLVMName(Out, GA->getComdat()->getName(), ComdatPrefix);
|
||||
}
|
||||
|
||||
printInfoComment(*GA);
|
||||
Out << '\n';
|
||||
}
|
||||
|
@ -9,6 +9,9 @@ $f2 = comdat any
|
||||
@v = global i32 0, comdat $f
|
||||
; CHECK: @v = global i32 0, comdat $f
|
||||
|
||||
@a = alias i32* @v
|
||||
; CHECK: @a = alias i32* @v{{$}}
|
||||
|
||||
define void @f() comdat $f {
|
||||
ret void
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user