This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e5f86e2 Turn cl::values() (for enum) from a vararg function to using [...] new 985220f [CUDA] Add #pragma clang force_cuda_host_device_{begin,end} pragmas. new 470ddb8 [CUDA] Declare our __device__ math functions in the same inli [...] new 204eb55 [CUDA] Rename cuda_builtin_vars.h to __clang_cuda_builtin_vars.h. new 8f211f3 [CUDA] Support <complex> and std::min/max on the device.
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: include/clang/Basic/DiagnosticParseKinds.td | 6 + include/clang/Parse/Parser.h | 1 + include/clang/Sema/Sema.h | 14 ++ include/clang/Serialization/ASTBitCodes.h | 6 +- include/clang/Serialization/ASTReader.h | 4 + include/clang/Serialization/ASTWriter.h | 1 + lib/Driver/ToolChains.cpp | 9 + lib/Frontend/CompilerInvocation.cpp | 7 +- lib/Headers/CMakeLists.txt | 5 +- ..._builtin_vars.h => __clang_cuda_builtin_vars.h} | 0 lib/Headers/__clang_cuda_cmath.h | 22 ++- lib/Headers/__clang_cuda_complex_builtins.h | 203 +++++++++++++++++++++ lib/Headers/__clang_cuda_math_forward_declares.h | 20 ++ lib/Headers/__clang_cuda_runtime_wrapper.h | 17 +- lib/Headers/cuda_wrappers/algorithm | 96 ++++++++++ lib/Headers/cuda_wrappers/complex | 79 ++++++++ lib/Parse/ParsePragma.cpp | 44 +++++ lib/Sema/SemaCUDA.cpp | 27 +++ lib/Serialization/ASTReader.cpp | 9 + lib/Serialization/ASTWriter.cpp | 9 + test/CodeGenCUDA/cuda-builtin-vars.cu | 2 +- test/PCH/pragma-cuda-force-host-device.cu | 27 +++ test/Parser/cuda-force-host-device-templates.cu | 41 +++++ test/Parser/cuda-force-host-device.cu | 36 ++++ test/SemaCUDA/cuda-builtin-vars.cu | 12 +- 25 files changed, 676 insertions(+), 21 deletions(-) rename lib/Headers/{cuda_builtin_vars.h => __clang_cuda_builtin_vars.h} (100%) create mode 100644 lib/Headers/__clang_cuda_complex_builtins.h create mode 100644 lib/Headers/cuda_wrappers/algorithm create mode 100644 lib/Headers/cuda_wrappers/complex create mode 100644 test/PCH/pragma-cuda-force-host-device.cu create mode 100644 test/Parser/cuda-force-host-device-templates.cu create mode 100644 test/Parser/cuda-force-host-device.cu