diff options
author | Kristof Umann <dkszelethus@gmail.com> | 2018-12-15 15:44:05 +0000 |
---|---|---|
committer | Kristof Umann <dkszelethus@gmail.com> | 2018-12-15 15:44:05 +0000 |
commit | f282d272154edd6a4d86d9d770ceea0822800062 (patch) | |
tree | c8ffa94252ebfe004af40c0179cf59a4321181ae /clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | |
parent | 8c8724dd0d12b06178797b825177583c33002d96 (diff) | |
download | bcm5719-llvm-f282d272154edd6a4d86d9d770ceea0822800062.tar.gz bcm5719-llvm-f282d272154edd6a4d86d9d770ceea0822800062.zip |
[analyzer] Prefer returns values to out-params in CheckerRegistry.cpp
Renaming collectCheckers to getEnabledCheckers
Changing the functionality to acquire all enabled checkers, rather then collect
checkers for a specific CheckerOptInfo (for example, collecting all checkers for
{ "core", true }, which meant enabling all checkers from the core package, which
was an unnecessary complication).
Removing CheckerOptInfo, instead of storing whether the option was claimed via a
field, we handle errors immediately, as getEnabledCheckers can now access a
DiagnosticsEngine. Realize that the remaining information it stored is directly
accessible through AnalyzerOptions.CheckerControlList.
Fix a test with -analyzer-disable-checker -verify accidentally left in.
llvm-svn: 349274
Diffstat (limited to 'clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp')
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index df360de857a..5239a7e6f85 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -246,7 +246,8 @@ bool ExecuteCompilerInvocation(CompilerInstance *Clang) { if (Clang->getAnalyzerOpts()->ShowEnabledCheckerList) { ento::printEnabledCheckerList(llvm::outs(), Clang->getFrontendOpts().Plugins, - *Clang->getAnalyzerOpts()); + *Clang->getAnalyzerOpts(), + Clang->getDiagnostics()); } // Honor -analyzer-config-help. |