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
Many LLVM intrinsics require some target features (e.g., llvm.x86.sse.* intrinsics generally require the x86 SSE feature)-
llvm.x86.sse.*
We are not currently checking whether they are enabled or not, since intrinsics are not defined with a #[target_feature(enable = "...")] attribute.
#[target_feature(enable = "...")]
Noticed in #3176 (comment).
The text was updated successfully, but these errors were encountered:
cad4f40
Auto merge of rust-lang#3180 - eduardosm:check-intrinsics-target-feat…
faed7c5
…ure, r=RalfJung Check that target features required by LLVM intrinsics are enabled Fixes rust-lang/miri#3178
41d7012
12b8af9
8d5cc53
Successfully merging a pull request may close this issue.
Many LLVM intrinsics require some target features (e.g.,
llvm.x86.sse.*
intrinsics generally require the x86 SSE feature)-We are not currently checking whether they are enabled or not, since intrinsics are not defined with a
#[target_feature(enable = "...")]
attribute.Noticed in #3176 (comment).
The text was updated successfully, but these errors were encountered: