This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from cabb0bc32e [OpenCL][PR42033] Fix addr space deduction with template parameters new c0abfaad68 [OpenCL] Update comments/diagnostics to refer to C++ for OpenCL new 0e0d37e253 [OpenCL] Improve destructor support in C++ for OpenCL
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: include/clang/AST/DeclCXX.h | 14 +++++-- include/clang/Basic/DiagnosticCommonKinds.td | 8 ++-- include/clang/Basic/DiagnosticParseKinds.td | 4 +- include/clang/Basic/LangOptions.def | 4 +- include/clang/Basic/TokenKinds.def | 5 +-- include/clang/Frontend/LangStandards.def | 2 +- lib/AST/DeclCXX.cpp | 25 ++++++++++-- lib/CodeGen/CGCXXABI.h | 14 ++++--- lib/CodeGen/CGCall.cpp | 2 +- lib/CodeGen/CGClass.cpp | 40 +++++++++++------- lib/CodeGen/CGDecl.cpp | 21 +++++----- lib/CodeGen/CGExprCXX.cpp | 31 ++++++++++---- lib/CodeGen/CodeGenFunction.h | 13 +++--- lib/CodeGen/ItaniumCXXABI.cpp | 31 +++++++++----- lib/CodeGen/MicrosoftCXXABI.cpp | 29 ++++++++----- lib/Frontend/InitPreprocessor.cpp | 2 +- lib/Parse/ParseDecl.cpp | 3 +- lib/Sema/DeclSpec.cpp | 1 - lib/Sema/SemaCast.cpp | 2 +- lib/Sema/SemaDecl.cpp | 11 +++-- lib/Sema/SemaDeclCXX.cpp | 54 ++++++++++++------------ lib/Sema/SemaExprCXX.cpp | 6 +-- lib/Sema/SemaOverload.cpp | 4 +- test/CodeGenOpenCLCXX/addrspace-ctor.cl | 14 ------- test/CodeGenOpenCLCXX/addrspace-with-class.cl | 59 +++++++++++++++++++++++++++ test/Driver/unknown-std.cl | 2 +- test/Parser/opencl-cxx-keywords.cl | 2 +- test/Parser/opencl-cxx-virtual.cl | 6 +-- test/SemaOpenCLCXX/newdelete.cl | 8 ++-- test/SemaOpenCLCXX/restricted.cl | 18 ++++---- 30 files changed, 277 insertions(+), 158 deletions(-) delete mode 100644 test/CodeGenOpenCLCXX/addrspace-ctor.cl create mode 100644 test/CodeGenOpenCLCXX/addrspace-with-class.cl