diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-06 00:08:09 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-06 00:08:09 +0000 |
commit | 2fff37ecce1efd21ecb9bb4937dca83bdea715ff (patch) | |
tree | 8cc5a4ad1a9c80f6e847c575945a5867d6384551 /Driver/clang.cpp | |
parent | cb0ab296dd7942b951ca84a0b82b954e3642b116 (diff) |
Added boilerplate to execute the CF reference count checker (which isn't yet implemented).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47982 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r-- | Driver/clang.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp index f5790df482..216e669ccc 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -71,6 +71,7 @@ enum ProgActions { AnalysisLiveVariables, // Print results of live-variable analysis. AnalysisGRSimpleVals, // Perform graph-reachability constant prop. AnalysisGRSimpleValsView, // Visualize results of path-sens. analysis. + CheckerCFRef, // Run the Core Foundation Ref. Count Checker. WarnDeadStores, // Run DeadStores checker on parsed ASTs. WarnDeadStoresCheck, // Check diagnostics for "DeadStores". WarnUninitVals, // Run UnitializedVariables checker. @@ -119,6 +120,8 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore, "Perform path-sensitive constant propagation."), clEnumValN(AnalysisGRSimpleValsView, "grsimple-view", "View results of path-sensitive constant propagation."), + clEnumValN(CheckerCFRef, "check-cfref", + "Run the Core Foundation reference count checker."), clEnumValN(TestSerialization, "test-pickling", "Run prototype serializtion code."), clEnumValN(EmitLLVM, "emit-llvm", @@ -1038,6 +1041,9 @@ static ASTConsumer* CreateASTConsumer(const std::string& InFile, case AnalysisGRSimpleValsView: return CreateGRSimpleVals(Diag, AnalyzeSpecificFunction, true); + case CheckerCFRef: + return CreateCFRefChecker(Diag, AnalyzeSpecificFunction); + case TestSerialization: return CreateSerializationTest(Diag, FileMgr, LangOpts); |