-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[clang][sema] Add support and documentation for __has_extension(c_fixed_enum)
#117507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
a6c9b5c
d9e0615
9fd4a25
53ba18d
8722c53
3a10186
7925096
e06f739
4a467b9
728a2d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -308,6 +308,10 @@ EXTENSION(datasizeof, LangOpts.CPlusPlus) | |||||
|
|
||||||
| FEATURE(cxx_abi_relative_vtable, LangOpts.CPlusPlus && LangOpts.RelativeCXXABIVTables) | ||||||
|
|
||||||
| //Fixed enum feature and extension, to be relocated in this file | ||||||
| FEATURE(c_fixed_enum, true) | ||||||
| EXTENSION(c_fixed_enum, true) | ||||||
|
||||||
| FEATURE(c_alignas, LangOpts.C11) |
| EXTENSION(c_alignas, true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably update the wording here to mention
__has_featureand language version behavior.