We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
enum_extensibility(closed)
Found by @5c4la4
enum MHD_Result { MHD_NO = 0, MHD_YES = 1 }__attribute__((enum_extensibility(closed))); enum MHD_Result f() { return MHD_NO; }
Here the __attribute__((enum_extensibility(closed))) is dumped into an incorrect location. This is a bug in LLVM AST dumper.
__attribute__((enum_extensibility(closed)))
The text was updated successfully, but these errors were encountered:
The testcase small/attr-13.c contains this code.
small/attr-13.c
Sorry, something went wrong.
No branches or pull requests
Found by @5c4la4
Here the
__attribute__((enum_extensibility(closed)))
is dumped into an incorrect location. This is a bug in LLVM AST dumper.The text was updated successfully, but these errors were encountered: