diff options
author | Jordy Rose <jediknil@belkadan.com> | 2011-08-16 21:24:21 +0000 |
---|---|---|
committer | Jordy Rose <jediknil@belkadan.com> | 2011-08-16 21:24:21 +0000 |
commit | 59cce71af6ff9e9faf1a4250dae87df73cd68495 (patch) | |
tree | 4b8e93eea2299a5f89e5e70f6f14c2ae26e558ee /clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp | |
parent | d7c6c9141a1db25971b1859eca5456cc484fb990 (diff) | |
download | bcm5719-llvm-59cce71af6ff9e9faf1a4250dae87df73cd68495.tar.gz bcm5719-llvm-59cce71af6ff9e9faf1a4250dae87df73cd68495.zip |
[analyzer] Overhaul of checker registration in preparation for basic plugin support. Removes support for checker groups (we can add them back in later if we decide they are still useful), and -analyzer-checker-help output is a little worse for the time being (no packages).
llvm-svn: 137758
Diffstat (limited to 'clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp b/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp index eeb7800e485..85a18ec98ea 100644 --- a/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp +++ b/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp @@ -17,6 +17,7 @@ ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { return CreateAnalysisConsumer(CI.getPreprocessor(), CI.getFrontendOpts().OutputFile, - CI.getAnalyzerOpts()); + CI.getAnalyzerOpts(), + CI.getFrontendOpts().Plugins); } |