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
as proposed llvm/llvm-project#74358 (comment) here let's make possible to mix target_clones with target_version.
target_clones
target_version
__attribute__((target_clones("dotprod", "aes"))) int callee(void) { return 42; } __attribute__((target_version("default"))) int callee(void) { return 0; } int caller(void) { return callee(); }
The text was updated successfully, but these errors were encountered:
Hi, thanks for your issue report.
If possible, we encourage you to contribute with a Pull Request that addresses this issue. We will be happy to review it.
Sorry, something went wrong.
I have created #310 for this.
Successfully merging a pull request may close this issue.
as proposed llvm/llvm-project#74358 (comment) here let's make possible to mix
target_clones
withtarget_version
.The text was updated successfully, but these errors were encountered: