This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d119a80874 Fix PR34668 - P0704R1 implementation is too permissive new 12e2fde436 PR15730/PR16986 Allow dependently typed vector_size types. new 916476d8b9 SafeStack: Add builtins to read unsafe stack top/bottom
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: docs/SafeStack.rst | 16 ++++- include/clang/AST/ASTContext.h | 6 ++ include/clang/AST/RecursiveASTVisitor.h | 12 ++++ include/clang/AST/Type.h | 46 ++++++++++++ include/clang/AST/TypeLoc.h | 7 ++ include/clang/AST/TypeNodes.def | 1 + include/clang/Basic/Builtins.def | 2 + include/clang/Sema/Sema.h | 1 + include/clang/Serialization/ASTBitCodes.h | 85 +++++++++++----------- lib/AST/ASTContext.cpp | 40 +++++++++++ lib/AST/ASTStructuralEquivalence.cpp | 16 ++++- lib/AST/ItaniumMangle.cpp | 44 ++++++++++++ lib/AST/MicrosoftMangle.cpp | 10 +++ lib/AST/Type.cpp | 22 ++++++ lib/AST/TypePrinter.cpp | 51 ++++++++++++- lib/Lex/LiteralSupport.cpp | 2 +- lib/Sema/SemaTemplate.cpp | 5 ++ lib/Sema/SemaTemplateDeduction.cpp | 56 +++++++++++++++ lib/Sema/SemaType.cpp | 116 +++++++++++++++++++----------- lib/Sema/TreeTransform.h | 54 ++++++++++++++ lib/Serialization/ASTReader.cpp | 16 +++++ lib/Serialization/ASTWriter.cpp | 13 ++++ test/SemaCXX/vector.cpp | 43 +++++++++++ tools/libclang/CIndex.cpp | 1 + 24 files changed, 576 insertions(+), 89 deletions(-)