This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from fe540593a5 [OpenCL] Fix diagnostic message about overload candidates new d54f227a4f [OpenCL] Add support of cl_intel_device_side_avc_motion_esti [...]
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: 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/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/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/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 + 37 files changed, 1061 insertions(+), 7 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