[PATCH] D157691: [ASTImporter] Remove extranous FunctionTemplateDecl introduced by templated friend
Ding Fei via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 15 01:10:30 PDT 2023
danix800 updated this revision to Diff 550210.
danix800 added a comment.
1. Remove unnecessary testcase.
2. Format unittest code.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157691/new/
https://reviews.llvm.org/D157691
Files:
clang/lib/AST/ASTImporter.cpp
clang/unittests/AST/ASTImporterTest.cpp
Index: clang/unittests/AST/ASTImporterTest.cpp
===================================================================
--- clang/unittests/AST/ASTImporterTest.cpp
+++ clang/unittests/AST/ASTImporterTest.cpp
@@ -5634,6 +5634,43 @@
EXPECT_EQ(Imported->getPreviousDecl(), Friend);
}
+TEST_P(ImportFriendFunctionTemplates, ImportFriendFunctionInsideClassTemplate) {
+ Decl *From, *To;
+ std::tie(From, To) = getImportedDecl(
+ R"(
+ template <typename T> struct X {
+ template <typename U> friend void f();
+ };
+ )",
+ Lang_CXX03, "", Lang_CXX03, "X");
+
+ auto *FromFriend = FirstDeclMatcher<FriendDecl>().match(From, friendDecl());
+ auto *ToFriend = FirstDeclMatcher<FriendDecl>().match(To, friendDecl());
+
+ EXPECT_TRUE(FromFriend ==
+ LastDeclMatcher<FriendDecl>().match(From, friendDecl()));
+ EXPECT_TRUE(ToFriend ==
+ LastDeclMatcher<FriendDecl>().match(To, friendDecl()));
+
+ auto *FromDecl = FromFriend->getFriendDecl();
+ auto *FromDC = FromFriend->getDeclContext();
+ auto *FromLexicalDC = FromFriend->getLexicalDeclContext();
+
+ EXPECT_TRUE(FromDC->containsDecl(FromFriend));
+ EXPECT_FALSE(FromDC->containsDecl(FromDecl));
+ EXPECT_TRUE(FromLexicalDC->containsDecl(FromFriend));
+ EXPECT_FALSE(FromLexicalDC->containsDecl(FromDecl));
+
+ auto *ToDecl = ToFriend->getFriendDecl();
+ auto *ToDC = ToFriend->getDeclContext();
+ auto *ToLexicalDC = ToFriend->getLexicalDeclContext();
+
+ EXPECT_TRUE(ToDC->containsDecl(ToFriend));
+ EXPECT_FALSE(ToDC->containsDecl(ToDecl));
+ EXPECT_TRUE(ToLexicalDC->containsDecl(ToFriend));
+ EXPECT_FALSE(ToLexicalDC->containsDecl(ToDecl));
+}
+
struct ASTImporterWithFakeErrors : ASTImporter {
using ASTImporter::ASTImporter;
bool returnWithErrorInTest() override { return true; }
Index: clang/lib/AST/ASTImporter.cpp
===================================================================
--- clang/lib/AST/ASTImporter.cpp
+++ clang/lib/AST/ASTImporter.cpp
@@ -6447,7 +6447,7 @@
ToFunc->setAccess(D->getAccess());
ToFunc->setLexicalDeclContext(LexicalDC);
- LexicalDC->addDeclInternal(ToFunc);
+ addDeclToContexts(D, ToFunc);
ASTImporterLookupTable *LT = Importer.SharedState->getLookupTable();
if (LT && !OldParamDC.empty()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D157691.550210.patch
Type: text/x-patch
Size: 2278 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230815/9d3df418/attachment.bin>
More information about the cfe-commits
mailing list