This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from ef72cd73f3 [X86] Add the movbe instruction intrinsics from icc. new 250f67c3f9 [cxx2a] P0614R1: Support init-statements in range-based for loops.
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/RecursiveASTVisitor.h | 2 + include/clang/AST/StmtCXX.h | 17 +- include/clang/Basic/DiagnosticParseKinds.td | 6 + include/clang/Basic/DiagnosticSemaKinds.td | 3 + include/clang/Parse/Parser.h | 13 +- include/clang/Sema/Sema.h | 2 + lib/AST/ASTImporter.cpp | 11 +- lib/AST/ExprConstant.cpp | 7 + lib/AST/StmtCXX.cpp | 3 +- lib/AST/StmtPrinter.cpp | 82 +++--- lib/Analysis/CFG.cpp | 5 +- lib/CodeGen/CGStmt.cpp | 2 + lib/CodeGen/CodeGenPGO.cpp | 2 + lib/CodeGen/CoverageMappingGen.cpp | 2 + lib/Parse/ParseExprCXX.cpp | 17 +- lib/Parse/ParseStmt.cpp | 63 +++-- lib/Parse/ParseTentative.cpp | 85 +++++-- lib/Sema/SemaStmt.cpp | 51 ++-- lib/Sema/TreeTransform.h | 40 ++- lib/Serialization/ASTReaderStmt.cpp | 1 + lib/Serialization/ASTWriterStmt.cpp | 1 + .../Inputs/expected-plists/cxx-for-range.cpp.plist | 281 +++++++++++++++++++++ test/Analysis/cxx-for-range.cpp | 5 + test/Analysis/scopes-cfg-output.cpp | 5 +- test/CodeGenCXX/cxx2a-init-statement.cpp | 10 + test/Import/cxx-for-range/Inputs/F.cpp | 3 +- test/Import/cxx-for-range/test.cpp | 5 + test/PCH/cxx2a-for-init-statement.cpp | 8 + test/Parser/cxx2a-init-statement.cpp | 34 +++ test/SemaCXX/constant-expression-cxx2a.cpp | 7 + test/SemaCXX/cxx17-compat.cpp | 9 + test/SemaObjCXX/foreach.mm | 8 + www/cxx_status.html | 2 +- 33 files changed, 651 insertions(+), 141 deletions(-) create mode 100644 test/CodeGenCXX/cxx2a-init-statement.cpp create mode 100644 test/PCH/cxx2a-for-init-statement.cpp create mode 100644 test/Parser/cxx2a-init-statement.cpp