This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0b4099d384 AIX system headers need stdint.h and inttypes.h to be re-enterable new a1ea7f6e02 Dump more information about expressions involving temporarie [...] new 4aaedf6e20 [Sema] Diagnose addr space mismatch while constructing objects
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/JSONNodeDumper.h | 3 + include/clang/Basic/DiagnosticSemaKinds.td | 3 + include/clang/Sema/Overload.h | 19 ++ lib/AST/JSONNodeDumper.cpp | 45 +++ lib/Sema/SemaDeclCXX.cpp | 9 +- lib/Sema/SemaInit.cpp | 2 + lib/Sema/SemaOverload.cpp | 26 +- test/AST/ast-dump-decl-json.m | 9 +- test/AST/ast-dump-stmt-json.m | 15 +- test/AST/ast-dump-temporaries-json.cpp | 446 +++++++++++++++++++++++++++++ test/CodeGenCXX/address-space-of-this.cpp | 5 +- test/CodeGenOpenCLCXX/addrspace-ctor.cl | 14 + test/SemaCXX/address-space-ctor.cpp | 18 ++ 13 files changed, 608 insertions(+), 6 deletions(-) create mode 100644 test/AST/ast-dump-temporaries-json.cpp create mode 100644 test/CodeGenOpenCLCXX/addrspace-ctor.cl create mode 100644 test/SemaCXX/address-space-ctor.cpp