diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-02-08 23:41:45 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-02-08 23:41:45 +0000 |
| commit | 6c379e2aa6f08fc4d64d6bce87631a9045e23e22 (patch) | |
| tree | 645c29eed4939c347c9975a93891b61da7c42d76 /clang/lib/Sema | |
| parent | cb956d93b86467de26d3af37d0c536497d070af9 (diff) | |
| download | bcm5719-llvm-6c379e2aa6f08fc4d64d6bce87631a9045e23e22.tar.gz bcm5719-llvm-6c379e2aa6f08fc4d64d6bce87631a9045e23e22.zip | |
When substituting a declaration non-type template argument for a
non-type template parameter that has reference type, augment the
qualifiers of the non-type template argument with those of the
referenced type. Fixes PR6250.
llvm-svn: 95607
Diffstat (limited to 'clang/lib/Sema')
| -rw-r--r-- | clang/lib/Sema/SemaTemplateInstantiate.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/clang/lib/Sema/SemaTemplateInstantiate.cpp b/clang/lib/Sema/SemaTemplateInstantiate.cpp index c8cc9dc98f4..99c1de61981 100644 --- a/clang/lib/Sema/SemaTemplateInstantiate.cpp +++ b/clang/lib/Sema/SemaTemplateInstantiate.cpp @@ -701,7 +701,7 @@ TemplateInstantiator::TransformPredefinedExpr(PredefinedExpr *E) { Sema::OwningExprResult TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, - NonTypeTemplateParmDecl *NTTP) { + NonTypeTemplateParmDecl *NTTP) { // If the corresponding template argument is NULL or non-existent, it's // because we are performing instantiation from explicitly-specified // template arguments in a function template, but there were some @@ -731,7 +731,8 @@ TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, // Derive the type we want the substituted decl to have. This had // better be non-dependent, or these checks will have serious problems. QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs, - E->getLocation(), DeclarationName()); + E->getLocation(), + DeclarationName()); assert(!TargetType.isNull() && "type substitution failed for param type"); assert(!TargetType->isDependentType() && "param type still dependent"); @@ -769,6 +770,8 @@ TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, } } + QualType T = VD->getType().getNonReferenceType(); + if (TargetType->isPointerType()) { // C++03 [temp.arg.nontype]p5: // - For a non-type template-parameter of type pointer to @@ -779,8 +782,7 @@ TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, // applied. OwningExprResult RefExpr - = SemaRef.BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), - E->getLocation()); + = SemaRef.BuildDeclRefExpr(VD, T, E->getLocation()); if (RefExpr.isInvalid()) return SemaRef.ExprError(); @@ -799,10 +801,14 @@ TemplateInstantiator::TransformTemplateParmRefExpr(DeclRefExpr *E, return SemaRef.Owned(RefE); } - // FIXME: template parameters can add qualifiers to a reference. - - return SemaRef.BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), - E->getLocation()); + // If the non-type template parameter has reference type, qualify the + // resulting declaration reference with the extra qualifiers on the + // type that the reference refers to. + if (const ReferenceType *TargetRef = TargetType->getAs<ReferenceType>()) + T = SemaRef.Context.getQualifiedType(T, + TargetRef->getPointeeType().getQualifiers()); + + return SemaRef.BuildDeclRefExpr(VD, T, E->getLocation()); } assert(Arg.getKind() == TemplateArgument::Integral); |

