[PATCH] D26310: Add a method to get the list of registered static analyzer checkers.

2016-11-07 Thread Alexander Kornienko via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL286218: Add a method to get the list of registered static analyzer checkers. (authored by alexfh). Changed prior to commit: https://reviews.llvm.org/D26310?vs=77098&id=77151#toc Repository: rL LLVM

[PATCH] D26310: Add a method to get the list of registered static analyzer checkers.

2016-11-07 Thread Anna Zaks via cfe-commits
zaks.anna accepted this revision. zaks.anna added a comment. This revision is now accepted and ready to land. Looks good. Thank you! https://reviews.llvm.org/D26310 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bi

[PATCH] D26310: Add a method to get the list of registered static analyzer checkers.

2016-11-07 Thread Alexander Kornienko via cfe-commits
alexfh updated this revision to Diff 77098. alexfh added a comment. - Don't expose debug checkers. https://reviews.llvm.org/D26310 Files: include/clang/StaticAnalyzer/Core/AnalyzerOptions.h lib/StaticAnalyzer/Core/AnalyzerOptions.cpp unittests/StaticAnalyzer/AnalyzerOptionsTest.cpp Inde

[PATCH] D26310: Add a method to get the list of registered static analyzer checkers.

2016-11-05 Thread Anna Zaks via cfe-commits
zaks.anna added a comment. Thanks for fixing this! Comment at: lib/StaticAnalyzer/Core/AnalyzerOptions.cpp:39 +if (IncludeExperimental || +(!CheckName.startswith("debug.") && !CheckName.startswith("alpha."))) + Result.push_back(CheckName); Debu

[PATCH] D26310: Add a method to get the list of registered static analyzer checkers.

2016-11-04 Thread Alexander Kornienko via cfe-commits
alexfh created this revision. alexfh added a reviewer: zaks.anna. alexfh added a subscriber: cfe-commits. This provides a better interface for clang-tidy and encapsulates the knowledge about experimental checkers instead of leaving this to the clients. https://reviews.llvm.org/D26310 Files: i