This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 53a7d337cb Fix interactions between __builtin_constant_p and constexpr [...] new af8f9ae48b Revert r350917 "[Sema] If CheckPlaceholderExpr rewrites the [...] new 418eae9689 [Builtins] Implement __builtin_is_constant_evaluated for use [...]
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/Basic/Builtins.def | 1 + include/clang/Sema/Sema.h | 4 +- lib/AST/ExprConstant.cpp | 4 + lib/Basic/Builtins.cpp | 5 +- lib/CodeGen/CGDecl.cpp | 3 +- lib/Sema/SemaDecl.cpp | 10 +- lib/Sema/SemaExprCXX.cpp | 7 +- lib/Sema/SemaLambda.cpp | 10 +- test/CodeGenCXX/builtin-is-constant-evaluated.cpp | 133 ++++++++++++++++++++++ test/Sema/builtins.c | 6 + test/SemaCXX/builtin-is-constant-evaluated.cpp | 121 ++++++++++++++++++++ test/SemaCXX/cxx1y-init-captures.cpp | 15 +++ test/SemaObjC/arc-repeated-weak.mm | 16 +-- 13 files changed, 304 insertions(+), 31 deletions(-) create mode 100644 test/CodeGenCXX/builtin-is-constant-evaluated.cpp create mode 100644 test/SemaCXX/builtin-is-constant-evaluated.cpp