This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a64a497 Re-commit r273548, reverted in r273589, with a fix to not pro [...] new 75ac0f5 Implement p0292r2 (constexpr if), a likely C++1z feature.
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/DiagnosticParseKinds.td | 5 + include/clang/Basic/DiagnosticSemaKinds.td | 8 +- include/clang/Sema/Sema.h | 59 ++++++--- lib/AST/ASTImporter.cpp | 3 +- lib/AST/Stmt.cpp | 9 +- lib/Analysis/BodyFarm.cpp | 4 +- lib/CodeGen/CGStmt.cpp | 5 +- lib/CodeGen/CodeGenFunction.cpp | 12 +- lib/CodeGen/CodeGenFunction.h | 8 +- lib/Parse/ParseStmt.cpp | 32 ++++- lib/Sema/JumpDiagnostics.cpp | 31 +++++ lib/Sema/SemaExpr.cpp | 18 ++- lib/Sema/SemaExprCXX.cpp | 15 ++- lib/Sema/SemaExprMember.cpp | 1 + lib/Sema/SemaLambda.cpp | 1 + lib/Sema/SemaStmt.cpp | 77 +++++++++--- lib/Sema/TreeTransform.h | 39 ++++-- lib/Serialization/ASTReaderStmt.cpp | 1 + lib/Serialization/ASTWriterStmt.cpp | 1 + .../dcl.spec/dcl.type/dcl.spec.auto/p2-1z.cpp | 47 +++++++ test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp | 137 +++++++++++++++++++++ test/CodeGenCXX/cxx1z-constexpr-if.cpp | 21 ++++ www/cxx_status.html | 6 + 24 files changed, 477 insertions(+), 77 deletions(-) create mode 100644 test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/p2-1z.cpp create mode 100644 test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp create mode 100644 test/CodeGenCXX/cxx1z-constexpr-if.cpp