[clang] [clang][HeuristicResolver] Only perform qualifier check for instance methods (PR #125166)
Nathan Ridge via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 30 20:48:14 PST 2025
https://github.com/HighCommander4 created https://github.com/llvm/llvm-project/pull/125166
Fixes https://github.com/llvm/llvm-project/issues/125164
>From 5d7ae41e0b67dd3cebe94d2aea67f653acfe5ad1 Mon Sep 17 00:00:00 2001
From: Nathan Ridge <zeratul976 at hotmail.com>
Date: Thu, 30 Jan 2025 23:45:52 -0500
Subject: [PATCH] [clang][HeuristicResolver] Only perform qualifier check for
instance methods
Fixes https://github.com/llvm/llvm-project/issues/125164
---
clang/lib/Sema/HeuristicResolver.cpp | 3 ++-
.../unittests/Sema/HeuristicResolverTest.cpp | 20 +++++++++++++++++++
2 files changed, 22 insertions(+), 1 deletion(-)
diff --git a/clang/lib/Sema/HeuristicResolver.cpp b/clang/lib/Sema/HeuristicResolver.cpp
index 0c57250e63df2e6..36e5b44b8b12cc1 100644
--- a/clang/lib/Sema/HeuristicResolver.cpp
+++ b/clang/lib/Sema/HeuristicResolver.cpp
@@ -482,7 +482,8 @@ std::vector<const NamedDecl *> HeuristicResolverImpl::resolveDependentMember(
if (!Filter(ND))
return false;
if (const auto *MD = dyn_cast<CXXMethodDecl>(ND)) {
- return MD->getMethodQualifiers().compatiblyIncludes(QT.getQualifiers(),
+ return !MD->isInstance() ||
+ MD->getMethodQualifiers().compatiblyIncludes(QT.getQualifiers(),
Ctx);
}
return true;
diff --git a/clang/unittests/Sema/HeuristicResolverTest.cpp b/clang/unittests/Sema/HeuristicResolverTest.cpp
index a0deb2d936756af..5c3459dbeb1018b 100644
--- a/clang/unittests/Sema/HeuristicResolverTest.cpp
+++ b/clang/unittests/Sema/HeuristicResolverTest.cpp
@@ -155,6 +155,26 @@ TEST(HeuristicResolver, MemberExpr_SmartPointer_Qualified) {
cxxMethodDecl(hasName("find"), isConst()).bind("output"));
}
+TEST(HeuristicResolver, MemberExpr_Static_Qualified) {
+ std::string Code = R"cpp(
+ template <typename T>
+ struct Waldo {
+ static void find();
+ };
+ template <typename T>
+ void foo(const Waldo<T>& t) {
+ t.find();
+ }
+ )cpp";
+ // Test resolution of "find" in "t.find()".
+ // The object being `const` should have no bearing on a call to a static
+ // method.
+ expectResolution(
+ Code, &HeuristicResolver::resolveMemberExpr,
+ cxxDependentScopeMemberExpr(hasMemberName("find")).bind("input"),
+ cxxMethodDecl(hasName("find")).bind("output"));
+}
+
TEST(HeuristicResolver, MemberExpr_AutoTypeDeduction1) {
std::string Code = R"cpp(
template <typename T>
More information about the cfe-commits
mailing list