From: Ted Kremenek Date: Wed, 9 Feb 2011 22:59:20 +0000 (+0000) Subject: Update clang-wpa to pass extra argument to AnalysisManager constructor. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a7d023625ede88abe31469a756f65bdcaa29d0a;p=clang Update clang-wpa to pass extra argument to AnalysisManager constructor. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125235 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/wpa/clang-wpa.cpp b/examples/wpa/clang-wpa.cpp index d5cb6f8458..b54eb37698 100644 --- a/examples/wpa/clang-wpa.cpp +++ b/examples/wpa/clang-wpa.cpp @@ -143,7 +143,8 @@ int main(int argc, char **argv) { /* TrimGraph */ false, /* InlineCall */ true, /* UseUnoptimizedCFG */ false, /* addImplicitDtors */ true, - /* addInitializers */ false); + /* addInitializers */ false, + /* reclaimeNodes */ true); TransferFuncs* TF = MakeCFRefCountTF(AMgr.getASTContext(), /*GC*/false, AMgr.getLangOptions());