This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 7668d4626c [clang] Set CMP0075 to new new 2a515b366e [OpenCL] Add support of cl_intel_device_side_avc_motion_esti [...] new 8bf0713027 clang-cl: Add "/clang:" pass-through arg support.
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: docs/UsersManual.rst | 12 + include/clang-c/Index.h | 16 +- include/clang/AST/ASTContext.h | 3 + include/clang/AST/Type.h | 33 +- include/clang/Basic/OpenCLExtensionTypes.def | 41 ++ include/clang/Basic/OpenCLExtensions.def | 1 + include/clang/Driver/CLCompatOptions.td | 2 + include/clang/Driver/Driver.h | 3 +- include/clang/Sema/Initialization.h | 4 + include/clang/Serialization/ASTBitCodes.h | 4 + include/clang/module.modulemap | 1 + lib/AST/ASTContext.cpp | 10 + lib/AST/ASTImporter.cpp | 4 + lib/AST/ExprConstant.cpp | 3 + lib/AST/ItaniumMangle.cpp | 6 + lib/AST/MicrosoftMangle.cpp | 5 + lib/AST/NSAPI.cpp | 3 + lib/AST/PrintfFormatString.cpp | 3 + lib/AST/Type.cpp | 7 + lib/AST/TypeLoc.cpp | 3 + lib/CodeGen/CGDebugInfo.cpp | 4 + lib/CodeGen/CGDebugInfo.h | 3 + lib/CodeGen/CGExprScalar.cpp | 3 +- lib/CodeGen/CGOpenCLRuntime.cpp | 5 + lib/CodeGen/CodeGenTypes.cpp | 3 + lib/CodeGen/ItaniumCXXABI.cpp | 3 + lib/Driver/Driver.cpp | 53 +- lib/Headers/opencl-c.h | 631 +++++++++++++++++++++ lib/Index/USRGeneration.cpp | 3 + lib/Sema/Sema.cpp | 4 + lib/Sema/SemaExpr.cpp | 6 + lib/Sema/SemaInit.cpp | 35 +- lib/Serialization/ASTCommon.cpp | 5 + lib/Serialization/ASTReader.cpp | 5 + .../CodeGenOpenCL/intel-subgroups-avc-ext-types.cl | 81 +++ test/Driver/cl-options.c | 14 + test/Headers/opencl-c-header.cl | 1 + test/Index/opencl-types.cl | 8 + test/SemaOpenCL/extension-version.cl | 9 + test/SemaOpenCL/intel-subgroup-avc-ext-types.cl | 105 ++++ tools/libclang/CIndex.cpp | 3 + tools/libclang/CXType.cpp | 4 + 42 files changed, 1131 insertions(+), 21 deletions(-) create mode 100644 include/clang/Basic/OpenCLExtensionTypes.def create mode 100644 test/CodeGenOpenCL/intel-subgroups-avc-ext-types.cl create mode 100644 test/SemaOpenCL/intel-subgroup-avc-ext-types.cl