From: Chris Lattner Date: Sat, 9 Jul 2011 18:53:56 +0000 (+0000) Subject: when an enum type is completed, only flush the type cache when X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8dd5cdfc462026648b480adaf774e24bc620f7c3;p=clang when an enum type is completed, only flush the type cache when the enum has already been converted. If not, there cannot be any types built on top of it, so there is no need to flush the cache. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134841 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CodeGenTypes.cpp b/lib/CodeGen/CodeGenTypes.cpp index e0baf800fb..9375410477 100644 --- a/lib/CodeGen/CodeGenTypes.cpp +++ b/lib/CodeGen/CodeGenTypes.cpp @@ -114,8 +114,10 @@ void CodeGenTypes::UpdateCompletedType(const TagDecl *TD) { // If this is an enum being completed, then we flush all non-struct types from // the cache. This allows function types and other things that may be derived // from the enum to be recomputed. - if (isa(TD)) { - TypeCache.clear(); + if (const EnumDecl *ED = dyn_cast(TD)) { + // Only flush the cache if we've actually already converted this type. + if (TypeCache.count(ED->getTypeForDecl())) + TypeCache.clear(); return; }