This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 336ca52861 [OPENMP]Fix PR41768: check DSA for globals with `default(non [...] new 1c40858fc2 [OpenMP][Clang] Support for target math functions
The 1 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: lib/Driver/ToolChains/Clang.cpp | 15 + lib/Headers/CMakeLists.txt | 3 + lib/Headers/__clang_cuda_cmath.h | 10 + lib/Headers/__clang_cuda_device_functions.h | 16 +- lib/Headers/__clang_cuda_libdevice_declares.h | 870 +++++++++++---------- lib/Headers/__clang_cuda_math_forward_declares.h | 4 + lib/Headers/openmp_wrappers/__clang_openmp_math.h | 47 ++ .../{stdnoreturn.h => openmp_wrappers/cmath} | 14 +- .../{stdnoreturn.h => openmp_wrappers/math.h} | 13 +- test/Driver/openmp-offload-gpu.c | 5 + test/Headers/Inputs/include/cmath | 5 + test/Headers/Inputs/include/limits | 10 + test/Headers/Inputs/include/math.h | 4 + test/Headers/nvptx_device_cmath_functions.c | 21 + test/Headers/nvptx_device_cmath_functions.cpp | 21 + test/Headers/nvptx_device_math_functions.c | 21 + test/Headers/nvptx_device_math_functions.cpp | 21 + 17 files changed, 656 insertions(+), 444 deletions(-) create mode 100644 lib/Headers/openmp_wrappers/__clang_openmp_math.h copy lib/Headers/{stdnoreturn.h => openmp_wrappers/cmath} (60%) copy lib/Headers/{stdnoreturn.h => openmp_wrappers/math.h} (60%) create mode 100644 test/Headers/Inputs/include/cmath create mode 100644 test/Headers/Inputs/include/limits create mode 100644 test/Headers/nvptx_device_cmath_functions.c create mode 100644 test/Headers/nvptx_device_cmath_functions.cpp create mode 100644 test/Headers/nvptx_device_math_functions.c create mode 100644 test/Headers/nvptx_device_math_functions.cpp