This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d164226 Add XRay flags to Clang. We implement two flags to control th [...] new 9530e8b P0305R0: Semantic analysis and code generation for C++17 init [...]
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/Stmt.h | 14 +++- include/clang/Basic/DiagnosticSemaKinds.td | 3 - include/clang/Sema/Sema.h | 1 + lib/AST/ASTImporter.cpp | 11 ++- lib/AST/ExprConstant.cpp | 10 +++ lib/AST/Stmt.cpp | 9 ++- lib/Analysis/BodyFarm.cpp | 8 +- lib/Analysis/CFG.cpp | 35 ++++++++- lib/CodeGen/CGStmt.cpp | 10 +++ lib/Sema/JumpDiagnostics.cpp | 20 +++-- lib/Sema/SemaStmt.cpp | 23 +++--- lib/Sema/TreeTransform.h | 25 +++++-- lib/Serialization/ASTReaderStmt.cpp | 2 + lib/Serialization/ASTWriterStmt.cpp | 2 + test/CodeGenCXX/cxx1z-init-statement.cpp | 70 +++++++++++++++++ test/Misc/ast-dump-invalid.cpp | 2 +- test/PCH/cxx1z-init-statement.cpp | 17 +++++ test/PCH/cxx1z-init-statement.h | 22 ++++++ test/Parser/cxx1z-init-statement.cpp | 28 +++---- test/SemaCXX/cxx1z-init-statement-warn-unused.cpp | 26 +++++++ test/SemaCXX/cxx1z-init-statement.cpp | 91 +++++++++++++++++++++++ www/cxx_status.html | 2 +- 22 files changed, 369 insertions(+), 62 deletions(-) create mode 100644 test/CodeGenCXX/cxx1z-init-statement.cpp create mode 100644 test/PCH/cxx1z-init-statement.cpp create mode 100644 test/PCH/cxx1z-init-statement.h create mode 100644 test/SemaCXX/cxx1z-init-statement-warn-unused.cpp create mode 100644 test/SemaCXX/cxx1z-init-statement.cpp