forked from OSchip/llvm-project
Always set dso_local in CodeGenModule::setDSOLocal.
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. llvm-svn: 326527
This commit is contained in:
parent
5a9e834eac
commit
796d4a885d
|
@ -716,6 +716,12 @@ void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV,
|
|||
|
||||
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;
|
||||
|
@ -773,8 +779,7 @@ static bool shouldAssumeDSOLocal(const CodeGenModule &CGM,
|
|||
}
|
||||
|
||||
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,
|
||||
|
|
Loading…
Reference in New Issue