Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:ExportedVarTmpl

155 template<typename T> __declspec(dllexport) int ExportedVarTmpl = 1;
158 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
160 USEVAR(ExportedVarTmpl<ImplicitInst_Exported>)
163 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
165 extern template int ExportedVarTmpl<ExplicitDecl_Exported>;
166 template int ExportedVarTmpl<ExplicitDecl_Exported>;
169 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
171 template __declspec(dllexport) int ExportedVarTmpl<ExplicitInst_Exported>;
174 // MSC-DAG: @"\01??$ExportedVarTmpl@UExplicitSpec_Exported@@@@3HA" = dllexport global i32 0, align 4
176 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Exported>;
178 // MSC-DAG: @"\01??$ExportedVarTmpl@UExplicitSpec_Def_Exported@@@@3HA" = dllexport global i32 1, align 4
180 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Def_Exported> = 1;
184 // MSC-DAG: @"\01??$ExportedVarTmpl@UExplicitSpec_NotExported@@@@3HA" = global i32 0, align 4
186 template<> int ExportedVarTmpl<ExplicitSpec_NotExported>;