From 02368d0d1a778b73fd73600496fcde4557b2973f Mon Sep 17 00:00:00 2001 From: Axel Naumann Date: Fri, 26 Aug 2011 14:06:12 +0000 Subject: [PATCH] From Vassil Vassilev: unnamed decls cannot be removed from the lookup map. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138631 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/DeclBase.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/AST/DeclBase.cpp b/lib/AST/DeclBase.cpp index 43a1c24149..8b1acb1996 100644 --- a/lib/AST/DeclBase.cpp +++ b/lib/AST/DeclBase.cpp @@ -969,6 +969,9 @@ void DeclContext::removeDecl(Decl *D) { if (isa(D)) { NamedDecl *ND = cast(D); + // Remove only decls that have a name + if (!ND->getDeclName()) return; + StoredDeclsMap *Map = getPrimaryContext()->LookupPtr; if (!Map) return; -- 2.50.1