diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-29 05:13:59 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-29 05:13:59 +0000 |
commit | e5c30122cae6113660c6098301fd22db1693e69a (patch) | |
tree | bda56023e23751537daa70aad32aa0c83565bf97 /include | |
parent | dd6cec16e91983651a73ec8a4aadfcfb5bf23fc1 (diff) |
Provide the option to run the CF-retain checker in GC enabled mode.
The transfer functions for the checker don't do anything special yet in GC mode.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Analysis/LocalCheckers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/LocalCheckers.h b/include/clang/Analysis/LocalCheckers.h index 6dcad7f376..bf4f30a337 100644 --- a/include/clang/Analysis/LocalCheckers.h +++ b/include/clang/Analysis/LocalCheckers.h @@ -31,7 +31,7 @@ void CheckUninitializedValues(CFG& cfg, ASTContext& Ctx, Diagnostic& Diags, bool FullUninitTaint=false); GRTransferFuncs* MakeGRSimpleValsTF(); -GRTransferFuncs* MakeCFRefCountTF(ASTContext& Ctx); +GRTransferFuncs* MakeCFRefCountTF(ASTContext& Ctx, bool GCEnabled); BugType* MakeDeadStoresChecker(); } // end namespace clang |