This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from cf1fe2247e [analyzer] Add a test for plugins using checker dependencies new f977b591a1 [CodeGenObjC] invoke objc_autorelease, objc_retain when necessary new 380ba985dc [OpenMP][bugfix] Fix issues with C++ 17 compilation when han [...] new ee9a99f5a0 Revert "[analyzer] Add a test for plugins using checker depe [...] new c9cbda2fe6 [c++20] For P1327R1: support dynamic_cast in constant expres [...]
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: examples/CMakeLists.txt | 3 + .../analyzer-plugin}/CMakeLists.txt | 0 .../analyzer-plugin}/MainCallChecker.cpp | 18 +- .../analyzer-plugin}/SampleAnalyzerPlugin.exports | 0 include/clang/Basic/DiagnosticASTKinds.td | 38 +++- lib/AST/ExprConstant.cpp | 253 ++++++++++++++++----- lib/CodeGen/CGObjC.cpp | 19 +- lib/Headers/__clang_cuda_cmath.h | 12 +- lib/Headers/__clang_cuda_device_functions.h | 20 +- lib/Headers/__clang_cuda_math_forward_declares.h | 20 +- test/Analysis/checker-plugins.c | 26 +-- test/Analysis/lit.local.cfg | 2 - test/Analysis/plugins/CMakeLists.txt | 10 - .../CheckerDependencyHandling/CMakeLists.txt | 11 - .../CheckerDependencyHandling.cpp | 28 --- ...CheckerDependencyHandlingAnalyzerPlugin.exports | 2 - test/CMakeLists.txt | 4 +- .../convert-messages-to-runtime-calls.m | 45 +++- test/CodeGenObjC/objc-alloc-init.m | 15 +- test/Headers/Inputs/include/cstdlib | 5 + ....cpp => nvptx_device_cmath_functions_cxx17.cpp} | 4 +- ...s.cpp => nvptx_device_math_functions_cxx17.cpp} | 4 +- test/SemaCXX/constant-expression-cxx2a.cpp | 52 +++++ 23 files changed, 403 insertions(+), 188 deletions(-) rename {test/Analysis/plugins/SampleAnalyzer => examples/analyzer-plugin}/CMakeLis [...] rename {test/Analysis/plugins/SampleAnalyzer => examples/analyzer-plugin}/MainCall [...] rename {test/Analysis/plugins/SampleAnalyzer => examples/analyzer-plugin}/SampleAn [...] delete mode 100644 test/Analysis/plugins/CMakeLists.txt delete mode 100644 test/Analysis/plugins/CheckerDependencyHandling/CMakeLists.txt delete mode 100644 test/Analysis/plugins/CheckerDependencyHandling/CheckerDependen [...] delete mode 100644 test/Analysis/plugins/CheckerDependencyHandling/CheckerDependen [...] copy test/Headers/{nvptx_device_cmath_functions.cpp => nvptx_device_cmath_function [...] copy test/Headers/{nvptx_device_math_functions.cpp => nvptx_device_math_functions_ [...]