mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Verifier: Forbid comdats on linker declarations.
Differential Revision: http://reviews.llvm.org/D10945 llvm-svn: 241414
This commit is contained in:
parent
f49ef7d3ac
commit
81c161f9de
@ -438,6 +438,9 @@ void Verifier::visitGlobalValue(const GlobalValue &GV) {
|
||||
Assert(GVar && GVar->getValueType()->isArrayTy(),
|
||||
"Only global arrays can have appending linkage!", GVar);
|
||||
}
|
||||
|
||||
if (GV.isDeclarationForLinker())
|
||||
Assert(!GV.hasComdat(), "Declaration may not be in a Comdat!", &GV);
|
||||
}
|
||||
|
||||
void Verifier::visitGlobalVariable(const GlobalVariable &GV) {
|
||||
|
5
test/Verifier/comdat-decl1.ll
Normal file
5
test/Verifier/comdat-decl1.ll
Normal file
@ -0,0 +1,5 @@
|
||||
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
||||
|
||||
$v = comdat any
|
||||
@v = available_externally global i32 0, comdat
|
||||
; CHECK: Declaration may not be in a Comdat!
|
5
test/Verifier/comdat-decl2.ll
Normal file
5
test/Verifier/comdat-decl2.ll
Normal file
@ -0,0 +1,5 @@
|
||||
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
||||
|
||||
$v = comdat any
|
||||
@v = external global i32, comdat
|
||||
; CHECK: Declaration may not be in a Comdat!
|
Loading…
x
Reference in New Issue
Block a user