[clang] 1299af6 - [clang] create class-type injected NTTP with correct value kind (#101395)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 2 20:36:52 PDT 2024
Author: Matheus Izvekov
Date: 2024-08-03T00:36:48-03:00
New Revision: 1299af66322aa21246b0de6204dff553e46c408c
URL: https://github.com/llvm/llvm-project/commit/1299af66322aa21246b0de6204dff553e46c408c
DIFF: https://github.com/llvm/llvm-project/commit/1299af66322aa21246b0de6204dff553e46c408c.diff
LOG: [clang] create class-type injected NTTP with correct value kind (#101395)
A template parameter object is an lvalue, which was not being respected
for injected parameters.
Fixes #101394
Added:
Modified:
clang/docs/ReleaseNotes.rst
clang/lib/AST/ASTContext.cpp
clang/lib/AST/ExprClassification.cpp
clang/test/SemaTemplate/temp_arg_template_p0522.cpp
Removed:
################################################################################
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index 85a2d45031b68..4c7bd099420ab 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -173,6 +173,8 @@ Bug Fixes to C++ Support
- Clang now correctly parses potentially declarative nested-name-specifiers in pointer-to-member declarators.
- Fix a crash when checking the initialzier of an object that was initialized
with a string literal. (#GH82167)
+- Fix a crash when matching template template parameters with templates which have
+ parameters of
diff erent class type. (#GH101394)
Bug Fixes to AST Handling
^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp
index b0cc7cb826f97..4c0b2fe9433f8 100644
--- a/clang/lib/AST/ASTContext.cpp
+++ b/clang/lib/AST/ASTContext.cpp
@@ -5588,11 +5588,19 @@ TemplateArgument ASTContext::getInjectedTemplateArg(NamedDecl *Param) {
// of a real template argument.
// FIXME: It would be more faithful to model this as something like an
// lvalue-to-rvalue conversion applied to a const-qualified lvalue.
- if (T->isRecordType())
+ ExprValueKind VK;
+ if (T->isRecordType()) {
+ // C++ [temp.param]p8: An id-expression naming a non-type
+ // template-parameter of class type T denotes a static storage duration
+ // object of type const T.
T.addConst();
- Expr *E = new (*this) DeclRefExpr(
- *this, NTTP, /*RefersToEnclosingVariableOrCapture*/ false, T,
- Expr::getValueKindForType(NTTP->getType()), NTTP->getLocation());
+ VK = VK_LValue;
+ } else {
+ VK = Expr::getValueKindForType(NTTP->getType());
+ }
+ Expr *E = new (*this)
+ DeclRefExpr(*this, NTTP, /*RefersToEnclosingVariableOrCapture=*/false,
+ T, VK, NTTP->getLocation());
if (NTTP->isParameterPack())
E = new (*this)
diff --git a/clang/lib/AST/ExprClassification.cpp b/clang/lib/AST/ExprClassification.cpp
index 8c5613d28fe76..1f1b8abc09b9e 100644
--- a/clang/lib/AST/ExprClassification.cpp
+++ b/clang/lib/AST/ExprClassification.cpp
@@ -485,12 +485,13 @@ static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E) {
/// ClassifyDecl - Return the classification of an expression referencing the
/// given declaration.
static Cl::Kinds ClassifyDecl(ASTContext &Ctx, const Decl *D) {
- // C++ [expr.prim.general]p6: The result is an lvalue if the entity is a
- // function, variable, or data member and a prvalue otherwise.
+ // C++ [expr.prim.id.unqual]p3: The result is an lvalue if the entity is a
+ // function, variable, or data member, or a template parameter object and a
+ // prvalue otherwise.
// In C, functions are not lvalues.
// In addition, NonTypeTemplateParmDecl derives from VarDecl but isn't an
- // lvalue unless it's a reference type (C++ [temp.param]p6), so we need to
- // special-case this.
+ // lvalue unless it's a reference type or a class type (C++ [temp.param]p8),
+ // so we need to special-case this.
if (const auto *M = dyn_cast<CXXMethodDecl>(D)) {
if (M->isImplicitObjectMemberFunction())
diff --git a/clang/test/SemaTemplate/temp_arg_template_p0522.cpp b/clang/test/SemaTemplate/temp_arg_template_p0522.cpp
index 251b6fc7d2be1..6f6568b9ab776 100644
--- a/clang/test/SemaTemplate/temp_arg_template_p0522.cpp
+++ b/clang/test/SemaTemplate/temp_arg_template_p0522.cpp
@@ -126,3 +126,21 @@ namespace GH62529 {
template<class T4> B<A, T4> f();
auto t = f<int>();
} // namespace GH62529
+
+namespace GH101394 {
+ struct X {};
+ struct Y {
+ constexpr Y(const X &) {}
+ };
+
+ namespace t1 {
+ template<template<X> class> struct A {};
+ template<Y> struct B;
+ template struct A<B>;
+ } // namespace t1
+ namespace t2 {
+ template<template<Y> class> struct A {};
+ template<X> struct B;
+ template struct A<B>; // expected-error {{
diff erent template parameters}}
+ } // namespace t2
+} // namespace GH101394
More information about the cfe-commits
mailing list