This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from ab7432452d Try fixing CRLF issues in Git with [clang-scan-deps] Minimiz [...] new c33061eb3c [analyzer] Trust global initializers when analyzing main(). new c07bc247e6 [analyzer] pr43036: Fix support for operator 'sizeof...'. new 8c28a172b7 [analyzer] Fix analyzer warnings on analyzer. new 4c11f17103 [CFG] Make representation of destructor calls more accurate.
The 4 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: .../StaticAnalyzer/Core/PathSensitive/MemRegion.h | 6 + lib/Analysis/CFG.cpp | 123 +++++--- .../Checkers/CStringSyntaxChecker.cpp | 27 +- .../Checkers/CheckSecuritySyntaxOnly.cpp | 9 +- .../Checkers/DynamicTypePropagation.cpp | 15 +- lib/StaticAnalyzer/Checkers/IteratorChecker.cpp | 3 +- .../Checkers/LocalizationChecker.cpp | 23 +- .../Checkers/MPI-Checker/MPIBugReporter.cpp | 4 +- lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 13 +- .../Checkers/MallocSizeofChecker.cpp | 2 +- .../Checkers/PointerArithChecker.cpp | 10 +- .../Checkers/UndefinedAssignmentChecker.cpp | 2 +- .../UninitializedObject/UninitializedPointee.cpp | 9 +- lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp | 3 +- lib/StaticAnalyzer/Core/CheckerHelpers.cpp | 2 +- lib/StaticAnalyzer/Core/Environment.cpp | 1 + lib/StaticAnalyzer/Core/ExprEngineC.cpp | 3 +- lib/StaticAnalyzer/Core/ExprEngineCXX.cpp | 5 +- lib/StaticAnalyzer/Core/MemRegion.cpp | 3 +- lib/StaticAnalyzer/Core/RegionStore.cpp | 79 +++-- test/Analysis/auto-obj-dtors-cfg-output.cpp | 4 +- test/Analysis/cfg-rich-constructors.cpp | 33 +-- test/Analysis/cfg-rich-constructors.mm | 3 +- test/Analysis/cfg.cpp | 4 +- test/Analysis/cstring-syntax-weird.c | 19 ++ test/Analysis/cstring-syntax-weird2.c | 17 ++ test/Analysis/cstring-syntax.c | 19 +- test/Analysis/main.c | 32 +++ test/Analysis/main.cpp | 22 ++ test/Analysis/missing-bind-temporary.cpp | 6 +- test/Analysis/more-dtors-cfg-output.cpp | 317 +++++++++++++++++++++ test/Analysis/scopes-cfg-output.cpp | 4 +- test/Analysis/sizeofpack.cpp | 15 + test/Analysis/temporaries.cpp | 19 +- 34 files changed, 685 insertions(+), 171 deletions(-) create mode 100644 test/Analysis/cstring-syntax-weird.c create mode 100644 test/Analysis/cstring-syntax-weird2.c create mode 100644 test/Analysis/main.c create mode 100644 test/Analysis/main.cpp create mode 100644 test/Analysis/more-dtors-cfg-output.cpp create mode 100644 test/Analysis/sizeofpack.cpp