From: David Majnemer Date: Sun, 13 Jul 2014 04:56:11 +0000 (+0000) Subject: IR: Allow comdats to be applied to globals with internal linkage X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8d826b844082d441ce13a75664b8700c0348314;p=llvm IR: Allow comdats to be applied to globals with internal linkage Our verifier check for checking if a global has local linkage was too strict. Forbid private linkage but permit local linkage. Object file formats permit this and forbidding it prevents elimination of unused, internal, vftables under the MSVC ABI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212900 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/Verifier.cpp b/lib/IR/Verifier.cpp index 314bad36b15..ec7ae3a77a7 100644 --- a/lib/IR/Verifier.cpp +++ b/lib/IR/Verifier.cpp @@ -605,11 +605,10 @@ void Verifier::visitComdat(const Comdat &C) { Assert1(GV, "comdat selection kind requires a global value with the same name", &C); - // The Module is invalid if the GlobalValue has local linkage. Allowing - // otherwise opens us up to seeing the underling global value get renamed if - // collisions occur. + // The Module is invalid if the GlobalValue has private linkage. Entities + // with private linkage don't have entries in the symbol table. if (GV) - Assert1(!GV->hasLocalLinkage(), "comdat global value has local linkage", + Assert1(!GV->hasPrivateLinkage(), "comdat global value has private linkage", GV); } diff --git a/test/Feature/comdat.ll b/test/Feature/comdat.ll index 05fb87c648e..1e878bb71cd 100644 --- a/test/Feature/comdat.ll +++ b/test/Feature/comdat.ll @@ -16,3 +16,6 @@ define void @f() comdat $f { ret void } ; CHECK: define void @f() comdat $f + +$i = comdat largest +@i = internal global i32 0, comdat $i diff --git a/test/Verifier/comdat2.ll b/test/Verifier/comdat2.ll index 23b6cee0950..d78030c12af 100644 --- a/test/Verifier/comdat2.ll +++ b/test/Verifier/comdat2.ll @@ -2,4 +2,4 @@ $v = comdat any @v = private global i32 0, comdat $v -; CHECK: comdat global value has local linkage +; CHECK: comdat global value has private linkage