[PATCH] D119675: Also remove the empty StoredDeclsList entry from the lookup table
Vassil Vassilev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri May 27 05:37:19 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8c0eb32d2aa0: Also remove the empty StoredDeclsList entry from the lookup table (authored by v.g.vassilev).
Herald added a project: clang.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119675/new/
https://reviews.llvm.org/D119675
Files:
clang/lib/AST/DeclBase.cpp
clang/unittests/AST/ASTImporterTest.cpp
Index: clang/unittests/AST/ASTImporterTest.cpp
===================================================================
--- clang/unittests/AST/ASTImporterTest.cpp
+++ clang/unittests/AST/ASTImporterTest.cpp
@@ -4279,6 +4279,10 @@
// This asserts in the old implementation.
DC->removeDecl(A0);
EXPECT_FALSE(DC->containsDecl(A0));
+
+ // Make sure we do not leave a StoredDeclsList with no entries.
+ DC->removeDecl(A1);
+ ASSERT_EQ(Map->find(A1->getDeclName()), Map->end());
}
struct ImportFunctionTemplateSpecializations
Index: clang/lib/AST/DeclBase.cpp
===================================================================
--- clang/lib/AST/DeclBase.cpp
+++ clang/lib/AST/DeclBase.cpp
@@ -1537,7 +1537,11 @@
if (Map) {
StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
assert(Pos != Map->end() && "no lookup entry for decl");
- Pos->second.remove(ND);
+ StoredDeclsList &List = Pos->second;
+ List.remove(ND);
+ // Clean up the entry if there are no more decls.
+ if (List.isNull())
+ Map->erase(Pos);
}
} while (DC->isTransparentContext() && (DC = DC->getParent()));
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119675.432530.patch
Type: text/x-patch
Size: 1177 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220527/5e551b2b/attachment.bin>
More information about the cfe-commits
mailing list