This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 5f5f6d1 IRGen: Do not set dllexport on declarations. new 1802195 Add support for attribute enum_extensibility.
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/Decl.h | 12 +++ include/clang/Basic/Attr.td | 10 ++- include/clang/Basic/AttrDocs.td | 49 +++++++++++++ lib/AST/Decl.cpp | 14 ++++ lib/Sema/SemaDecl.cpp | 4 +- lib/Sema/SemaDeclAttr.cpp | 25 +++++++ lib/Sema/SemaStmt.cpp | 21 ++++-- test/Sema/enum-attr.c | 130 +++++++++++++++++++++++++++++++++ test/SemaCXX/attr-flag-enum-reject.cpp | 4 - test/SemaCXX/enum-attr.cpp | 108 +++++++++++++++++++++++++++ 10 files changed, 362 insertions(+), 15 deletions(-) create mode 100644 test/Sema/enum-attr.c delete mode 100644 test/SemaCXX/attr-flag-enum-reject.cpp create mode 100644 test/SemaCXX/enum-attr.cpp