summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-02-09 22:59:20 +0000
committerTed Kremenek <kremenek@apple.com>2011-02-09 22:59:20 +0000
commit9a7d023625ede88abe31469a756f65bdcaa29d0a (patch)
treec8cd67ff8ba15341b4b940f9d59d7aaf1fdc7e36 /examples
parent89cc5d6cc09116cba9c455f8c6966c69cd04f398 (diff)
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
Diffstat (limited to 'examples')
-rw-r--r--examples/wpa/clang-wpa.cpp3
1 files changed, 2 insertions, 1 deletions
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());