-
Notifications
You must be signed in to change notification settings - Fork 353
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
Check for required target features when evaluating LLVM intrinsics #3178
Comments
This was referenced Nov 19, 2023
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Nov 25, 2023
…ure, r=RalfJung Check that target features required by LLVM intrinsics are enabled Fixes rust-lang/miri#3178
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Nov 25, 2023
…ure, r=RalfJung Check that target features required by LLVM intrinsics are enabled Fixes rust-lang/miri#3178
lnicola
pushed a commit
to lnicola/rust-analyzer
that referenced
this issue
Apr 7, 2024
…ure, r=RalfJung Check that target features required by LLVM intrinsics are enabled Fixes rust-lang/miri#3178
RalfJung
pushed a commit
to RalfJung/rust-analyzer
that referenced
this issue
Apr 27, 2024
…ure, r=RalfJung Check that target features required by LLVM intrinsics are enabled Fixes rust-lang/miri#3178
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: