This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from af1bfac502 Revert [Clang Interpreter] Initial patch for the constexpr i [...] new 0c07d3746d [c++20] Implement semantic restrictions for C++20 designated [...] new 1d98bab4c4 ASTReader: Bypass overridden files when reading PCHs
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/DiagnosticGroups.td | 11 +- include/clang/Basic/DiagnosticSemaKinds.td | 38 ++- include/clang/Basic/FileManager.h | 28 ++- include/clang/Basic/SourceManager.h | 7 +- include/clang/Sema/Sema.h | 7 + lib/Basic/FileManager.cpp | 25 +- lib/Basic/SourceManager.cpp | 22 +- lib/Sema/SemaExpr.cpp | 74 +++++- lib/Sema/SemaInit.cpp | 268 ++++++++++++++------- lib/Sema/SemaOverload.cpp | 6 +- lib/Sema/TreeTransform.h | 2 +- lib/Serialization/ASTReader.cpp | 21 +- test/Analysis/globals.cpp | 2 +- test/CXX/expr/expr.const/p2-0x.cpp | 2 +- test/CodeGenObjCXX/designated-initializers.mm | 2 +- test/PCH/cxx1y-default-initializer.cpp | 4 +- test/Parser/cxx0x-lambda-expressions.cpp | 4 +- test/Parser/objc-init.m | 6 +- test/Sema/designated-initializers.c | 14 +- test/Sema/static-assert.c | 7 +- test/SemaCXX/aggregate-initialization.cpp | 7 +- test/SemaCXX/c99.cpp | 69 +++++- test/SemaCXX/constant-expression-cxx11.cpp | 6 +- test/SemaCXX/constexpr-printing.cpp | 6 +- test/SemaCXX/cxx0x-initializer-constructor.cpp | 2 +- test/SemaCXX/cxx2a-initializer-aggregates.cpp | 109 ++++++++- test/SemaCXX/decltype.cpp | 10 +- .../SemaCXX/designated-initializers-base-class.cpp | 3 +- test/SemaCXX/designated-initializers.cpp | 4 +- test/SemaCXX/eval-crashes.cpp | 2 +- test/SemaCXX/member-init.cpp | 2 +- test/SemaObjCXX/message.mm | 2 +- test/SemaTemplate/instantiate-c99.cpp | 6 +- test/SemaTemplate/instantiate-init.cpp | 4 +- unittests/Basic/FileManagerTest.cpp | 50 ++++ 35 files changed, 629 insertions(+), 203 deletions(-)