-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Forbid old-style simd_shuffleN
intrinsics
#113534
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @workingjubilee (or someone else) soon. Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (
|
d89f9da
to
e4646f0
Compare
This comment has been minimized.
This comment has been minimized.
e4646f0
to
e4aac8b
Compare
This comment has been minimized.
This comment has been minimized.
b2dfecb
to
dffb486
Compare
☔ The latest upstream changes (presumably #113877) made this pull request unmergeable. Please resolve the merge conflicts. |
You may carry out the sentence. |
@rustbot author |
dffb486
to
4457ef2
Compare
@rustbot ready |
Hell yeah. @bors r+ rollup |
…iaskrgr Rollup of 8 pull requests Successful merges: - rust-lang#113534 (Forbid old-style `simd_shuffleN` intrinsics) - rust-lang#113999 (Specify macro is invalid in certain contexts) - rust-lang#114348 (Migrate GUI colors test to original CSS color format) - rust-lang#114373 (unix/kernel_copy.rs: copy_file_range_candidate allows empty output files) - rust-lang#114404 (Migrate GUI colors test to original CSS color format) - rust-lang#114409 (builtin impl confirmation wuhu) - rust-lang#114429 (compiletest: Handle non-utf8 paths (fix FIXME)) - rust-lang#114431 (Enable tests on rustc_codegen_ssa) r? `@ghost` `@rustbot` modify labels: rollup
Don't merge before rust-lang/packed_simd#350 has made its way to crates.io
We used to support specifying the lane length of simd_shuffle ops by attaching the lane length to the name of the intrinsic (like
simd_shuffle16
). After this PR, you cannot do that anymore, and need to instead either rely on inference of theidx
argument type or specify it assimd_shuffle::<_, [u32; 16], _>
.r? @workingjubilee