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
dr_simd_t doesn't appear in the current (11-08-23) published HTML at https://dynamorio.org/search?query=dr_simd_t.
dr_simd_t
The reason Doxygen can't generate a proper HTML definition is because the parser is getting confused by the ALIGN_VAR() attribute macro in:
ALIGN_VAR()
typedef union ALIGN_VAR(16) _dr_simd_t {
Rendering it as a function ALIGN_VAR() rather than a data structure:
union ALIGN_VAR (16) _dr_simd_t
See Functions in https://dynamorio.org/dr__defines_8h.html
Functions
Bug exposed by work on #5835 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
dr_simd_t
doesn't appear in the current (11-08-23) published HTML at https://dynamorio.org/search?query=dr_simd_t.The reason Doxygen can't generate a proper HTML definition is because the parser is getting confused by the
ALIGN_VAR()
attribute macro in:Rendering it as a function
ALIGN_VAR()
rather than a data structure:See
Functions
in https://dynamorio.org/dr__defines_8h.htmlBug exposed by work on #5835 (comment)
The text was updated successfully, but these errors were encountered: