This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a3307a12a1 Assert that a valid operator new/delete signature is always [...] new c79938aaca Add #pragma clang 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: docs/LanguageExtensions.rst | 175 +++++++ include/clang/Basic/Attr.td | 109 +++++ include/clang/Basic/AttrSubjectMatchRules.h | 46 ++ include/clang/Basic/CMakeLists.txt | 5 + include/clang/Basic/DiagnosticGroups.td | 4 +- include/clang/Basic/DiagnosticParseKinds.td | 37 ++ include/clang/Basic/DiagnosticSemaKinds.td | 19 + include/clang/Basic/TokenKinds.def | 3 + include/clang/Parse/CMakeLists.txt | 6 + include/clang/Parse/Parser.h | 7 + include/clang/Sema/AttributeList.h | 8 + include/clang/Sema/Sema.h | 32 ++ lib/Basic/Attributes.cpp | 11 + lib/Parse/ParsePragma.cpp | 533 +++++++++++++++++++++ lib/Parse/ParseStmt.cpp | 4 + lib/Parse/Parser.cpp | 4 + lib/Sema/AttributeList.cpp | 21 + lib/Sema/Sema.cpp | 67 ++- lib/Sema/SemaAttr.cpp | 211 ++++++++ lib/Sema/SemaDecl.cpp | 2 + lib/Sema/SemaDeclAttr.cpp | 3 + lib/Sema/SemaDeclCXX.cpp | 2 + lib/Sema/SemaDeclObjC.cpp | 13 +- test/FixIt/fixit-pragma-attribute.c | 6 + test/FixIt/fixit-pragma-attribute.cpp | 83 ++++ .../pragma-attribute-cxx-subject-match-rules.cpp | 169 +++++++ test/Misc/pragma-attribute-cxx.cpp | 106 ++++ .../pragma-attribute-objc-subject-match-rules.m | 113 +++++ test/Misc/pragma-attribute-objc.m | 164 +++++++ test/Misc/pragma-attribute-strict-subjects.c | 222 +++++++++ ...pragma-attribute-supported-attributes-list.test | 62 +++ test/Parser/pragma-attribute-declspec.cpp | 13 + test/Parser/pragma-attribute.cpp | 181 +++++++ test/Sema/pragma-attribute-strict-subjects.c | 153 ++++++ test/Sema/pragma-attribute.c | 47 ++ test/lit.cfg | 2 + test/lit.site.cfg.in | 1 + utils/TableGen/ClangAttrEmitter.cpp | 443 ++++++++++++++++- utils/TableGen/TableGen.cpp | 31 +- utils/TableGen/TableGenBackends.h | 6 + 40 files changed, 3072 insertions(+), 52 deletions(-) create mode 100644 include/clang/Basic/AttrSubjectMatchRules.h create mode 100644 test/FixIt/fixit-pragma-attribute.c create mode 100644 test/FixIt/fixit-pragma-attribute.cpp create mode 100644 test/Misc/pragma-attribute-cxx-subject-match-rules.cpp create mode 100644 test/Misc/pragma-attribute-cxx.cpp create mode 100644 test/Misc/pragma-attribute-objc-subject-match-rules.m create mode 100644 test/Misc/pragma-attribute-objc.m create mode 100644 test/Misc/pragma-attribute-strict-subjects.c create mode 100644 test/Misc/pragma-attribute-supported-attributes-list.test create mode 100644 test/Parser/pragma-attribute-declspec.cpp create mode 100644 test/Parser/pragma-attribute.cpp create mode 100644 test/Sema/pragma-attribute-strict-subjects.c create mode 100644 test/Sema/pragma-attribute.c