This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 02a417f69b [CMake] Replace the sanitizer support in runtimes build with [...] new d568cd7138 [analyzer] PR41269: Add a bit of C++ smart pointer modeling. new 4991acc29e [analyzer] PR41335: Fix crash when no-store event is in a bo [...]
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/StaticAnalyzer/Checkers/Checkers.td | 4 ++ .../Core/BugReporter/PathDiagnostic.h | 4 +- lib/StaticAnalyzer/Checkers/CMakeLists.txt | 1 + lib/StaticAnalyzer/Checkers/Move.h | 30 +++++++++ lib/StaticAnalyzer/Checkers/MoveChecker.cpp | 12 ++++ lib/StaticAnalyzer/Checkers/SmartPtrModeling.cpp | 74 ++++++++++++++++++++++ lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 13 ++-- test/Analysis/Inputs/system-header-simulator-cxx.h | 1 + test/Analysis/OSAtomic_mac.c | 20 ++++++ test/Analysis/smart-ptr.cpp | 18 ++++++ test/Analysis/use-after-move.cpp | 26 ++++++-- 11 files changed, 191 insertions(+), 12 deletions(-) create mode 100644 lib/StaticAnalyzer/Checkers/Move.h create mode 100644 lib/StaticAnalyzer/Checkers/SmartPtrModeling.cpp create mode 100644 test/Analysis/OSAtomic_mac.c create mode 100644 test/Analysis/smart-ptr.cpp