This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 7f9e8b9 Implement __emul, __emulu, _mul128 and _umul128 MS intrinsics new 48fe699 Re-commit r283722, reverted in r283750, with a fix for a CUDA [...]
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/AST/ASTContext.h | 5 + include/clang/AST/ExprCXX.h | 16 +- include/clang/AST/Type.h | 3 +- include/clang/Basic/DiagnosticSemaKinds.td | 4 + include/clang/Sema/Overload.h | 4 +- include/clang/Sema/Sema.h | 11 +- lib/AST/ASTContext.cpp | 24 + lib/AST/ASTImporter.cpp | 1 + lib/AST/Decl.cpp | 48 +- lib/AST/DeclCXX.cpp | 26 +- lib/AST/ExprCXX.cpp | 5 +- lib/AST/Type.cpp | 9 + lib/CodeGen/CGExprCXX.cpp | 387 ++++++----- lib/CodeGen/CodeGenFunction.h | 3 +- lib/Sema/SemaCUDA.cpp | 28 + lib/Sema/SemaDecl.cpp | 8 + lib/Sema/SemaDeclCXX.cpp | 26 +- lib/Sema/SemaExprCXX.cpp | 752 ++++++++++++--------- lib/Sema/SemaOverload.cpp | 11 +- lib/Serialization/ASTReaderStmt.cpp | 1 + lib/Serialization/ASTWriterStmt.cpp | 1 + .../basic.stc.dynamic.deallocation/p2.cpp | 19 + test/CXX/expr/expr.unary/expr.delete/p10.cpp | 25 + test/CXX/expr/expr.unary/expr.new/p14.cpp | 69 ++ test/CXX/expr/expr.unary/expr.new/p20-0x.cpp | 57 +- test/CXX/special/class.dtor/p9.cpp | 19 +- test/CodeGenCXX/cxx1z-aligned-allocation.cpp | 206 ++++++ 27 files changed, 1238 insertions(+), 530 deletions(-) create mode 100644 test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.de [...] create mode 100644 test/CXX/expr/expr.unary/expr.delete/p10.cpp create mode 100644 test/CXX/expr/expr.unary/expr.new/p14.cpp create mode 100644 test/CodeGenCXX/cxx1z-aligned-allocation.cpp