This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0b2316f968 Revert "This patch enables the usage of constant Enum identi [...] new deada24dc0 [StaticAnalyzer] Completely unrolling specific loops with kn [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .../clang/StaticAnalyzer/Core/AnalyzerOptions.h | 7 + .../Core/PathSensitive/LoopUnrolling.h | 34 ++++ .../Checkers/ExprInspectionChecker.cpp | 1 + lib/StaticAnalyzer/Core/AnalyzerOptions.cpp | 6 + lib/StaticAnalyzer/Core/CMakeLists.txt | 2 + lib/StaticAnalyzer/Core/ExprEngine.cpp | 22 +++ lib/StaticAnalyzer/Core/LoopUnrolling.cpp | 207 +++++++++++++++++++++ test/Analysis/analyzer-config.c | 3 +- test/Analysis/analyzer-config.cpp | 3 +- test/Analysis/loop-unrolling.cpp | 176 ++++++++++++++++++ 10 files changed, 459 insertions(+), 2 deletions(-) create mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h create mode 100644 lib/StaticAnalyzer/Core/LoopUnrolling.cpp create mode 100644 test/Analysis/loop-unrolling.cpp