[ThinLTO] Add code comment. NFC
authorEugene Leviant <eleviant@accesssoftek.com>
Tue, 22 Oct 2019 12:57:23 +0000 (12:57 +0000)
committerEugene Leviant <eleviant@accesssoftek.com>
Tue, 22 Oct 2019 12:57:23 +0000 (12:57 +0000)
llvm-svn: 375500

llvm/lib/Transforms/IPO/FunctionImport.cpp

index 2ce8c92..3f5cc07 100644 (file)
@@ -952,6 +952,9 @@ void llvm::thinLTOResolvePrevailingInModule(
     if (NewLinkage == GV.getLinkage())
       return;
     if (GlobalValue::isLocalLinkage(GV.getLinkage()) ||
+        // Don't internalize anything here, because the code below
+        // lacks necessary correctness checks. Leave this job to
+        // LLVM 'internalize' pass.
         GlobalValue::isLocalLinkage(NewLinkage) ||
         // In case it was dead and already converted to declaration.
         GV.isDeclaration())