This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0eaef4712d [analyzer] Introduce a simplified API for adding custom path notes. new 9d38fb1910 [analyzer] PR37501: Disable assertion for logical op short c [...] new 8ac513b1f1 [analyzer] Move taint API from ProgramState to a separate he [...]
The 2 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: .../Core/BugReporter/BugReporterVisitors.h | 14 -- .../Core/PathSensitive/ProgramState.h | 37 ---- .../Core/PathSensitive/TaintManager.h | 58 ------ .../StaticAnalyzer/Core/PathSensitive/TaintTag.h | 29 --- .../Checkers/ArrayBoundCheckerV2.cpp | 4 +- lib/StaticAnalyzer/Checkers/CMakeLists.txt | 1 + lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp | 6 +- .../Checkers/GenericTaintChecker.cpp | 23 ++- lib/StaticAnalyzer/Checkers/Taint.cpp | 227 +++++++++++++++++++++ lib/StaticAnalyzer/Checkers/Taint.h | 102 +++++++++ lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp | 5 +- lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp | 4 +- lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 20 -- lib/StaticAnalyzer/Core/CMakeLists.txt | 1 - lib/StaticAnalyzer/Core/ExprEngineC.cpp | 29 ++- lib/StaticAnalyzer/Core/ProgramState.cpp | 183 ----------------- lib/StaticAnalyzer/Core/TaintManager.cpp | 22 -- test/Analysis/logical-ops.c | 19 +- test/Analysis/taint-dumps.c | 14 ++ 19 files changed, 419 insertions(+), 379 deletions(-) delete mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h delete mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h create mode 100644 lib/StaticAnalyzer/Checkers/Taint.cpp create mode 100644 lib/StaticAnalyzer/Checkers/Taint.h delete mode 100644 lib/StaticAnalyzer/Core/TaintManager.cpp create mode 100644 test/Analysis/taint-dumps.c