Add support for attribute enum_extensibility.
This commit adds support for a new attribute that will be used to distinguish between extensible and inextensible enums. There are three main purposes of this attribute: 1. Give better control over when enum-related warnings are issued. For example, in the code below, clang will not issue a -Wassign-enum warning if the enum is marked "open": enum __attribute__((enum_extensibility(closed))) EnumClosed { B0 = 1, B1 = 10 }; enum __attribute__((enum_extensibility(open))) EnumOpen { C0 = 1, C1 = 10 }; enum EnumClosed ec = 100; // warning issued enum EnumOpen eo = 100; // no warning 2. Enable code-completion and debugging tools to offer better suggestions. 3. Make it easier for swift's clang importer to determine which swift type an enum should be mapped to. For more details, see the discussion I started on cfe-dev: http://lists.llvm.org/pipermail/cfe-dev/2017-February/052748.html rdar://problem/12764379 rdar://problem/23145650 Differential Revision: https://reviews.llvm.org/D30766 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@298332 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/Decl.h 12 additions, 0 deletionsinclude/clang/AST/Decl.h
- include/clang/Basic/Attr.td 9 additions, 1 deletioninclude/clang/Basic/Attr.td
- include/clang/Basic/AttrDocs.td 49 additions, 0 deletionsinclude/clang/Basic/AttrDocs.td
- lib/AST/Decl.cpp 14 additions, 0 deletionslib/AST/Decl.cpp
- lib/Sema/SemaDecl.cpp 2 additions, 2 deletionslib/Sema/SemaDecl.cpp
- lib/Sema/SemaDeclAttr.cpp 25 additions, 0 deletionslib/Sema/SemaDeclAttr.cpp
- lib/Sema/SemaStmt.cpp 13 additions, 8 deletionslib/Sema/SemaStmt.cpp
- test/Sema/enum-attr.c 130 additions, 0 deletionstest/Sema/enum-attr.c
- test/SemaCXX/attr-flag-enum-reject.cpp 0 additions, 4 deletionstest/SemaCXX/attr-flag-enum-reject.cpp
- test/SemaCXX/enum-attr.cpp 108 additions, 0 deletionstest/SemaCXX/enum-attr.cpp
Loading
Please register or sign in to comment