This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 780813d AMDGPU: export s_sendmsg{halt} instrinsics new 31b3c53 [analyzer] Refactor and simplify SimpleConstraintManager
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: .../Core/PathSensitive/ConstraintManager.h | 2 + .../Core/PathSensitive/SimpleConstraintManager.h | 92 +++++++++ lib/StaticAnalyzer/Core/CMakeLists.txt | 1 + lib/StaticAnalyzer/Core/ConstraintManager.cpp | 4 +- lib/StaticAnalyzer/Core/RangeConstraintManager.cpp | 102 ++++++--- .../Core/RangedConstraintManager.cpp | 204 ++++++++++++++++++ ...nstraintManager.h => RangedConstraintManager.h} | 69 +++---- .../Core/SimpleConstraintManager.cpp | 230 +-------------------- 8 files changed, 415 insertions(+), 289 deletions(-) create mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstrain [...] create mode 100644 lib/StaticAnalyzer/Core/RangedConstraintManager.cpp rename lib/StaticAnalyzer/Core/{SimpleConstraintManager.h => RangedConstraintManag [...]