This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 25f75c4 [cxx1z-constexpr-lambda] Implement constant evaluation of non [...] new 5a6ff0d Add the diagnose_if attribute to clang.
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/Expr.h | 3 +- include/clang/Basic/Attr.td | 27 +- include/clang/Basic/AttrDocs.td | 59 ++++ include/clang/Basic/DiagnosticCommonKinds.td | 2 + include/clang/Basic/DiagnosticGroups.td | 4 +- include/clang/Basic/DiagnosticSemaKinds.td | 12 +- include/clang/Sema/Initialization.h | 4 +- include/clang/Sema/Overload.h | 80 +++-- include/clang/Sema/Sema.h | 37 ++- lib/AST/ExprConstant.cpp | 19 +- lib/Sema/SemaDeclAttr.cpp | 109 ++++++- lib/Sema/SemaExpr.cpp | 73 +++-- lib/Sema/SemaLookup.cpp | 3 +- lib/Sema/SemaOverload.cpp | 344 +++++++++++++++----- lib/Sema/SemaTemplateInstantiateDecl.cpp | 63 ++-- test/Sema/diagnose_if.c | 152 +++++++++ test/SemaCXX/diagnose_if.cpp | 460 +++++++++++++++++++++++++++ 17 files changed, 1282 insertions(+), 169 deletions(-) create mode 100644 test/Sema/diagnose_if.c create mode 100644 test/SemaCXX/diagnose_if.cpp