This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from b4b42d6821 [analyzer] Introduce correct lifetime extension behavior in [...] new f524e7c6ff [CFG] NFC: Refactor ConstructionContext into a finite set of cases. new f23067b376 [analyzer] Self-debug: Dump dynamic type info and taint with [...]
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: include/clang/Analysis/CFG.h | 107 +-------- include/clang/Analysis/ConstructionContext.h | 245 +++++++++++++++++++++ .../Core/PathSensitive/DynamicTypeMap.h | 3 + lib/Analysis/CFG.cpp | 118 ++++++---- lib/Analysis/CMakeLists.txt | 1 + lib/Analysis/ConstructionContext.cpp | 92 ++++++++ lib/StaticAnalyzer/Core/DynamicTypeMap.cpp | 23 ++ lib/StaticAnalyzer/Core/ExprEngineCXX.cpp | 130 ++++++----- .../Core/ExprEngineCallAndReturn.cpp | 8 +- lib/StaticAnalyzer/Core/ProgramState.cpp | 9 +- 10 files changed, 530 insertions(+), 206 deletions(-) create mode 100644 include/clang/Analysis/ConstructionContext.h create mode 100644 lib/Analysis/ConstructionContext.cpp