forked from OSchip/llvm-project
MinGW: don't allow adding DLL attribute if template already has explicit instantiation declaration
This is a follow-up to r238266 which failed to take MinGW into account. llvm-svn: 239374
This commit is contained in:
parent
bb1983cf3a
commit
c0875507be
|
@ -7369,7 +7369,11 @@ Sema::ActOnExplicitInstantiation(Scope *S,
|
|||
// FIXME: Need to notify the ASTMutationListener that we did this.
|
||||
Def->setTemplateSpecializationKind(TSK);
|
||||
|
||||
if (!getDLLAttr(Def) && getDLLAttr(Specialization)) {
|
||||
if (!getDLLAttr(Def) && getDLLAttr(Specialization) &&
|
||||
Context.getTargetInfo().getCXXABI().isMicrosoft()) {
|
||||
// In the MS ABI, an explicit instantiation definition can add a dll
|
||||
// attribute to a template with a previous instantiation declaration.
|
||||
// MinGW doesn't allow this.
|
||||
auto *A = cast<InheritableAttr>(
|
||||
getDLLAttr(Specialization)->clone(getASTContext()));
|
||||
A->setInherited(true);
|
||||
|
|
|
@ -694,8 +694,10 @@ USEMEMFUNC(ExplicitInstantiationDeclExportedTemplate<int>, f);
|
|||
template <typename T> struct ExplicitInstantiationDeclExportedDefTemplate { void f() {} ExplicitInstantiationDeclExportedDefTemplate() {} };
|
||||
extern template struct ExplicitInstantiationDeclExportedDefTemplate<int>;
|
||||
template struct __declspec(dllexport) ExplicitInstantiationDeclExportedDefTemplate<int>;
|
||||
USEMEMFUNC(ExplicitInstantiationDeclExportedDefTemplate<int>, f);
|
||||
// M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?f@?$ExplicitInstantiationDeclExportedDefTemplate@H@@QAEXXZ"
|
||||
// M32-DAG: define weak_odr dllexport x86_thiscallcc %struct.ExplicitInstantiationDeclExportedDefTemplate* @"\01??0?$ExplicitInstantiationDeclExportedDefTemplate@H@@QAE@XZ"
|
||||
// G32-DAG: define weak_odr x86_thiscallcc void @_ZN44ExplicitInstantiationDeclExportedDefTemplateIiE1fEv
|
||||
|
||||
namespace { struct InternalLinkageType {}; }
|
||||
struct __declspec(dllexport) PR23308 {
|
||||
|
|
|
@ -731,6 +731,7 @@ USECLASS(ExplicitInstantiationDeclImportedDefTemplate<int>);
|
|||
USEMEMFUNC(ExplicitInstantiationDeclImportedDefTemplate<int>, f);
|
||||
// M32-DAG: {{declare|define available_externally}} dllimport x86_thiscallcc void @"\01?f@?$ExplicitInstantiationDeclImportedDefTemplate@H@@QAEXXZ"
|
||||
// M32-DAG: {{declare|define available_externally}} dllimport x86_thiscallcc %struct.ExplicitInstantiationDeclImportedDefTemplate* @"\01??0?$ExplicitInstantiationDeclImportedDefTemplate@H@@QAE@XZ"
|
||||
// G32-DAG: define weak_odr x86_thiscallcc void @_ZN44ExplicitInstantiationDeclImportedDefTemplateIiE1fEv
|
||||
|
||||
template <typename T> struct __declspec(dllimport) ExplicitInstantiationDeclExportedDefImportedTemplate { void f() {} ExplicitInstantiationDeclExportedDefImportedTemplate() {} };
|
||||
extern template struct __declspec(dllimport) ExplicitInstantiationDeclExportedDefImportedTemplate <int>;
|
||||
|
|
Loading…
Reference in New Issue