This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 8c6a98b5d8 [AST] No longer visiting CXXMethodDecl bodies created by com [...] new 584a96f104 Add SVE opaque built-in types
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/ASTContext.h | 3 + include/clang/AST/Type.h | 3 + include/clang/Basic/AArch64SVEACLETypes.def | 70 ++++++++++++++++++++++ include/clang/Basic/TargetInfo.h | 6 ++ include/clang/Serialization/ASTBitCodes.h | 3 + lib/AST/ASTContext.cpp | 47 +++++++++++++-- lib/AST/ASTImporter.cpp | 4 ++ lib/AST/ExprConstant.cpp | 3 + lib/AST/ItaniumMangle.cpp | 9 +++ lib/AST/MicrosoftMangle.cpp | 3 + lib/AST/NSAPI.cpp | 3 + lib/AST/PrintfFormatString.cpp | 3 + lib/AST/Type.cpp | 7 +++ lib/AST/TypeLoc.cpp | 3 + lib/Basic/TargetInfo.cpp | 1 + lib/Basic/Targets/AArch64.cpp | 10 ++++ lib/CodeGen/CGDebugInfo.cpp | 16 +++++ lib/CodeGen/CodeGenTypes.cpp | 16 +++++ lib/CodeGen/ItaniumCXXABI.cpp | 3 + lib/Index/USRGeneration.cpp | 3 + lib/Sema/Sema.cpp | 8 ++- lib/Sema/SemaExpr.cpp | 8 +++ lib/Serialization/ASTCommon.cpp | 5 ++ lib/Serialization/ASTReader.cpp | 5 ++ test/AST/ast-dump-aarch64-sve-types.c | 38 ++++++++++++ test/CodeGen/aarch64-sve.c | 9 +++ .../CodeGenCXX/aarch64-mangle-sve-vectors-msvc.cpp | 7 +++ test/CodeGenCXX/aarch64-mangle-sve-vectors.cpp | 31 ++++++++++ test/CodeGenCXX/aarch64-sve-typeinfo.cpp | 58 ++++++++++++++++++ test/CodeGenObjC/aarch64-sve-types.m | 32 ++++++++++ test/PCH/aarch64-sve-types.c | 21 +++++++ test/Sema/aarch64-sve-types.c | 52 ++++++++++++++++ test/SemaObjC/aarch64-sve-types.m | 22 +++++++ tools/libclang/CIndex.cpp | 3 + unittests/AST/ASTImporterTest.cpp | 38 ++++++++++++ 35 files changed, 547 insertions(+), 6 deletions(-) create mode 100644 include/clang/Basic/AArch64SVEACLETypes.def create mode 100644 test/AST/ast-dump-aarch64-sve-types.c create mode 100644 test/CodeGen/aarch64-sve.c create mode 100644 test/CodeGenCXX/aarch64-mangle-sve-vectors-msvc.cpp create mode 100644 test/CodeGenCXX/aarch64-mangle-sve-vectors.cpp create mode 100644 test/CodeGenCXX/aarch64-sve-typeinfo.cpp create mode 100644 test/CodeGenObjC/aarch64-sve-types.m create mode 100644 test/PCH/aarch64-sve-types.c create mode 100644 test/Sema/aarch64-sve-types.c create mode 100644 test/SemaObjC/aarch64-sve-types.m