This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0b6b713771 [ObjC] Disallow vector parameters and return values in Objec [...] new d31f7cc84c [X86] Support of no_caller_saved_registers attribute
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/Type.h | 38 ++++++++++++++-------- include/clang/Basic/Attr.td | 6 ++++ include/clang/Basic/AttrDocs.td | 34 +++++++++++++++++++ include/clang/Basic/DiagnosticSemaKinds.td | 3 ++ include/clang/CodeGen/CGFunctionInfo.h | 17 +++++++--- include/clang/Sema/Sema.h | 1 + lib/AST/ASTContext.cpp | 2 ++ lib/AST/TypePrinter.cpp | 2 ++ lib/CodeGen/CGCall.cpp | 3 ++ lib/Sema/SemaDecl.cpp | 14 ++++++++ lib/Sema/SemaDeclAttr.cpp | 38 +++++++++++++++++++--- lib/Sema/SemaType.cpp | 19 +++++++++-- lib/Serialization/ASTReader.cpp | 9 ++--- lib/Serialization/ASTWriter.cpp | 2 ++ .../attr-x86-no_caller_saved_registers.cpp | 31 ++++++++++++++++++ .../attr-non-x86-no_caller_saved_registers.cpp | 29 +++++++++++++++++ .../SemaCXX/attr-x86-no_caller_saved_registers.cpp | 33 +++++++++++++++++++ 17 files changed, 252 insertions(+), 29 deletions(-) create mode 100644 test/CodeGenCXX/attr-x86-no_caller_saved_registers.cpp create mode 100644 test/SemaCXX/attr-non-x86-no_caller_saved_registers.cpp create mode 100644 test/SemaCXX/attr-x86-no_caller_saved_registers.cpp