This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 5fe5d44d7f Sink PrettyDeclStackTrace down to the AST library new f466627bea [ARM] Add ARMv8.2-A FP16 vector intrinsic new 05aba39f91 [analyzer] [NFC] Move worklist implementation to WorkList.cpp new 4a8ed9adb5 [analyzer] Extend GCDAntipatternChecker to match group_enter [...] new 1b19ec8be9 [analyzer] Trust _Nonnull annotations for system framework new e8d80b7dba [Modules] Update test to mention it requires C++14.
The 5 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/Basic/arm_neon.td | 99 ++- include/clang/StaticAnalyzer/Checkers/Checkers.td | 8 + .../Core/PathSensitive/CheckerHelpers.h | 21 + lib/CodeGen/CGBuiltin.cpp | 62 +- lib/StaticAnalyzer/Checkers/CMakeLists.txt | 1 + .../Checkers/GCDAntipatternChecker.cpp | 147 ++- lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp | 33 +- .../Checkers/TrustNonnullChecker.cpp | 52 ++ lib/StaticAnalyzer/Core/CMakeLists.txt | 1 + lib/StaticAnalyzer/Core/CheckerHelpers.cpp | 29 +- lib/StaticAnalyzer/Core/CoreEngine.cpp | 230 ----- lib/StaticAnalyzer/Core/WorkList.cpp | 252 ++++++ .../system-header-simulator-for-nullability.h | 9 + test/Analysis/gcdantipatternchecker_test.m | 54 ++ test/Analysis/trustnonnullchecker_test.m | 43 + test/CodeGen/arm-v8.2a-neon-intrinsics.c | 982 +++++++++++++++++++++ test/Modules/self-referencing-lambda.cpp | 2 +- 17 files changed, 1660 insertions(+), 365 deletions(-) create mode 100644 lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp create mode 100644 lib/StaticAnalyzer/Core/WorkList.cpp create mode 100644 test/Analysis/trustnonnullchecker_test.m create mode 100644 test/CodeGen/arm-v8.2a-neon-intrinsics.c