This shouldn't change any results for now, but is more consistent with
how we set dllimport/dllexport and will make future changes easier.
Since clang produces IR as it parses, it can find out mid file that
something is dllimport. When that happens we have to drop
dso_local. This is not a problem right now because
CodeGenModule::setDSOLocal is called from relatively few places at
the moment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@326527
91177308-0d34-0410-b5e6-
96231b3b80d8
static bool shouldAssumeDSOLocal(const CodeGenModule &CGM,
llvm::GlobalValue *GV) {
+ if (GV->hasLocalLinkage())
+ return true;
+
+ if (!GV->hasDefaultVisibility() && !GV->hasExternalWeakLinkage())
+ return true;
+
// DLLImport explicitly marks the GV as external.
if (GV->hasDLLImportStorageClass())
return false;
}
void CodeGenModule::setDSOLocal(llvm::GlobalValue *GV) const {
- if (shouldAssumeDSOLocal(*this, GV))
- GV->setDSOLocal(true);
+ GV->setDSOLocal(shouldAssumeDSOLocal(*this, GV));
}
void CodeGenModule::setDLLImportDLLExport(llvm::GlobalValue *GV,