diff options
| author | Ted Kremenek <kremenek@apple.com> | 2008-07-02 00:44:58 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2008-07-02 00:44:58 +0000 |
| commit | 8e631a026779f0ffc25fb24f603adf01d16bc042 (patch) | |
| tree | c9fc566bbbf2371e59aef5e17d835d8da89a6c55 /clang/Driver/clang.cpp | |
| parent | 82a9321f5641b76aeb7ba9d6fad5e4b559327fb1 (diff) | |
| download | bcm5719-llvm-8e631a026779f0ffc25fb24f603adf01d16bc042.tar.gz bcm5719-llvm-8e631a026779f0ffc25fb24f603adf01d16bc042.zip | |
Migrated driver logic for running the CF retain/release checker over to the new AnalysisConsumer interface.
llvm-svn: 53002
Diffstat (limited to 'clang/Driver/clang.cpp')
| -rw-r--r-- | clang/Driver/clang.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/clang/Driver/clang.cpp b/clang/Driver/clang.cpp index eddaca3a88d..344fe08bffd 100644 --- a/clang/Driver/clang.cpp +++ b/clang/Driver/clang.cpp @@ -77,7 +77,6 @@ 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. TestSerialization, // Run experimental serialization code. ParsePrintCallbacks, // Parse and print each callback. ParseSyntaxOnly, // Parse and perform semantic analysis. @@ -120,8 +119,6 @@ ProgAction(llvm::cl::desc("Choose output type:"), llvm::cl::ZeroOrMore, "Print results of live variable analysis"), clEnumValN(AnalysisGRSimpleVals, "checker-simple", "Perform path-sensitive constant propagation"), - clEnumValN(CheckerCFRef, "checker-cfref", - "Run the Core Foundation reference count checker"), clEnumValN(TestSerialization, "test-pickling", "Run prototype serialization code"), clEnumValN(EmitLLVM, "emit-llvm", @@ -182,6 +179,8 @@ clEnumValN(WarnDeadStores, "warn-dead-stores", "Flag warnings of stores to dead variables"), clEnumValN(WarnUninitVals, "warn-uninit-values", "Flag warnings of uses of unitialized variables"), +clEnumValN(CheckerCFRef, "checker-cfref", + "Run the [Core] Foundation reference count checker"), clEnumValEnd)); //===----------------------------------------------------------------------===// @@ -1206,11 +1205,6 @@ static ASTConsumer* CreateASTConsumer(const std::string& InFile, return CreateGRSimpleVals(Diag, PP, PPF, AnalyzeSpecificFunction, OutputFile, VisualizeEG, TrimGraph, AnalyzeAll); - case CheckerCFRef: - return CreateCFRefChecker(Diag, PP, PPF, LangOpts, - AnalyzeSpecificFunction, - OutputFile, VisualizeEG, TrimGraph, AnalyzeAll); - case TestSerialization: return CreateSerializationTest(Diag, FileMgr); |

