-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
[X86] Properly test headers with Wdocumentation #35297
Comments
@llvm/issue-subscribers-backend-x86 |
@llvm/issue-subscribers-good-first-issue |
…arning. NFC Noticed while triaging Issue #35297
\operation ... \endoperation are not valid doxygen commands and cause issues when -Wdocumentation is enabled (Issue #35297) This patch proposes to replace them with \code{.operation} ... \endcode blocks so that the pseudo-code is correctly retained in any documentation and downstream can use the ".operation" type for its own formatting. Differential Revision: https://reviews.llvm.org/D125170
Basic "-Wdocumentation" testing is now in, but we can't enable "-Wdocumentation-pedantic" yet which we realistically need to resolve this. |
-Wdocumentation-pedantic and -Wdocumentation-unknown-command testing landed in d3a4033 |
Extended Description
As mentioned on D41523, we should ensure that all the x86 builtin codegen tests are being properly tested with Wdocumentation to check for any anomalies in the doxygen within x86intrin.h etc.
Initial tests suggested that just adding -Wdocumentation to the RUN command doesn't seem to work so further investigation is necessary.
The text was updated successfully, but these errors were encountered: