Skip to content
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

Incorrect mention of 'alignof' in a diagnostic about 'alignas' #55175

Closed
int6 opened this issue Apr 28, 2022 · 3 comments
Closed

Incorrect mention of 'alignof' in a diagnostic about 'alignas' #55175

int6 opened this issue Apr 28, 2022 · 3 comments
Assignees
Labels
clang:diagnostics New/improved warning or error message in Clang, but not in clang-tidy or static analyzer confirmed Verified by a second party

Comments

@int6
Copy link
Contributor

int6 commented Apr 28, 2022

% cat main.cpp
class alignas(void) Bar {};test ../build/debug/bin/clang++ -std=c++11 ./alignas.cpp
./alignas.cpp:1:15: error: invalid application of 'alignof' to an incomplete type 'void'
class alignas(void) A {};
             ~^~~~~
1 error generated.

Should 'alignof' in the first diagnostic message be replaced with 'alignas'? Although alignas equivalent to alignas(alignof(type)).

@EugeneZelenko EugeneZelenko added clang:diagnostics New/improved warning or error message in Clang, but not in clang-tidy or static analyzer and removed new issue labels Apr 28, 2022
@AaronBallman AaronBallman changed the title Does Clang's diagnostic message for alignas need to be improved? Incorrect mention of 'alignof' in a diagnostic about 'alignas' May 3, 2022
@AaronBallman AaronBallman added the confirmed Verified by a second party label May 3, 2022
@AaronBallman
Copy link
Collaborator

The trouble is this bit: https://github.com/llvm/llvm-project/blob/main/clang/lib/Parse/ParseDecl.cpp#L2882

When parsing the alignment argument for alignas and given a parenthesized type, we process it how the standard specifies by parsing it as an alignof expression (http://eel.is/c++draft/dcl.attr#dcl.align-3), but we have no way to tell Sema that the type trait we're actually after is alignas instead. Thus, we complain about the invalid alignof incorrectly.

Making alignas into an actual type trait would be possible but a bit novel (it's not a unary expression or a type trait, it's an attribute). Threading through "hey, you're building an alignas expression" also doesn't seem particularly clean. I think it might be that the correct approach here is to lift the logic out of ActOnUnaryExprOrTypeTraitExpr() into a new ActOnAlignasTypeArgument() function or somesuch.

@int6
Copy link
Contributor Author

int6 commented May 4, 2022

The trouble is this bit: https://github.com/llvm/llvm-project/blob/main/clang/lib/Parse/ParseDecl.cpp#L2882

When parsing the alignment argument for alignas and given a parenthesized type, we process it how the standard specifies by parsing it as an alignof expression (http://eel.is/c++draft/dcl.attr#dcl.align-3), but we have no way to tell Sema that the type trait we're actually after is alignas instead. Thus, we complain about the invalid alignof incorrectly.

Making alignas into an actual type trait would be possible but a bit novel (it's not a unary expression or a type trait, it's an attribute). Threading through "hey, you're building an alignas expression" also doesn't seem particularly clean. I think it might be that the correct approach here is to lift the logic out of ActOnUnaryExprOrTypeTraitExpr() into a new ActOnAlignasTypeArgument() function or somesuch.

Thanks for your reply and suggestion aaron, I'll try to understand this part and I'd be happy to do something about it

@yronglin
Copy link
Contributor

Fixed by f75b735

@yronglin yronglin self-assigned this May 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:diagnostics New/improved warning or error message in Clang, but not in clang-tidy or static analyzer confirmed Verified by a second party
Projects
None yet
Development

No branches or pull requests

4 participants