-
Notifications
You must be signed in to change notification settings - Fork 343
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
remove some SSE/SSE2 intrinsics that are no longer used by stdarch #3747
Conversation
Blocked on rust-lang/stdarch#1584 propagating to the rustc repo. |
The stdarch patch will also ensure that the "sqrt.ps.256" case in https://github.com/rust-lang/miri/blob/master/src/shims/x86/avx.rs#L78 will never be reached. This case is still present here. |
Yeah, but sqrt is implemented together with two other functions there so there's not really any code saved by removing that... 🤷 The same goes for sse.sqrt.ss, sse.sqrt.ps. |
Hm I guess this removes all uses of |
@RalfJung rust-lang/rust#128466 got merged. This PR is no longer blocked. |
Ah, good point, thanks! :) @bors r+ |
remove some SSE/SSE2 intrinsics that are no longer used by stdarch Fixes #3691
💔 Test failed - checks-actions |
Ah, maybe we need the rustup to land first. |
Hm, no... we had a rustup yesterday, so rust-lang/rust#128466 should have been picked up. |
D'oh, this is from a Miri test directly importing the intrinsic.^^ |
@bors r+ |
☀️ Test successful - checks-actions |
Fixes #3691