Uh oh!
There was an error while loading. Please reload this page.
Fix test simd/extract-insert-dyn on s390x - #140456
Conversation
rustbot
commented
Apr 29, 2025
rustbot has assigned @Mark-Simulacrum. Use |
Uh oh!
There was an error while loading. Please reload this page.
wesleywiser
commented
Apr 29, 2025
r? wesleywiser |
d00b33a to
24af1d9Comparewesleywiser
commented
Apr 29, 2025
bors
commented
Apr 29, 2025
Rollup of 12 pull requests Successful merges: - rust-lang#136160 (Remove backticks from `ShouldPanic::YesWithMessage`'s `TrFailedMsg`) - rust-lang#138087 (Initial implementation of `core_float_math`) - rust-lang#139059 (uses_power_alignment: wording tweaks) - rust-lang#139192 (mention provenance in the pointer::wrapping_offset docs) - rust-lang#140312 (Improve pretty-printing of braces) - rust-lang#140404 (rm `TypeVistable` impls for `Canonical`) - rust-lang#140437 (enable msa feature for mips in codegen tests) - rust-lang#140438 (Add `rust.debug-assertions-tools` option) - rust-lang#140439 (miri: algebraic intrinsics: bring back float non-determinism) - rust-lang#140445 (Treat ManuallyDrop as ~const Destruct) - rust-lang#140446 (chore: fix some tests) - rust-lang#140448 (Rename `rustc_query_append!` to `rustc_with_all_queries!`) Failed merges: - rust-lang#140456 (Fix test simd/extract-insert-dyn on s390x) r? `@ghost` `@rustbot` modify labels: rollup
bors
commented
Apr 30, 2025
☔ The latest upstream changes (presumably #140503) made this pull request unmergeable. Please resolve the merge conflicts. |
This comment has been minimized.
This comment has been minimized.
wesleywiser
commented
May 1, 2025
Hi @fneddy, looks like rustfmt wants that attribute split across multiple lines now that it's gotten long. Could you also rebase? We don't allow merge commits in PRs to make the overall repo history simpler. (If you need help, this guide should have what you need in it https://rustc-dev-guide.rust-lang.org/git.html#i-made-a-merge-commit-by-accident) |
1226051 to
3b9ae29Compare
This comment has been minimized.
This comment has been minimized.
3b9ae29 to
44d8257Comparefneddy
commented
May 2, 2025
thank you :) |
This comment has been minimized.
This comment has been minimized.
44d8257 to
c48b0e8Compare
This comment has been minimized.
This comment has been minimized.
c48b0e8 to
f3f3248Compare
This comment has been minimized.
This comment has been minimized.
Fix the test for s390x by enabling s390x vector extension via `target_feature(enable = "vector")`(rust-lang#127506). As this is is still gated by `#![feature(s390x_target_feature)]` we need that attribute also.
f3f3248 to
61488e5Comparefneddy
commented
May 3, 2025
everybody is mad at borrow checker while I am fighting with formatting 😭 |
tgross35
commented
May 3, 2025
At the very least this one can be automatically fixed with @bors r=wesleywiser |
bors
commented
May 3, 2025
Rollup of 7 pull requests Successful merges: - rust-lang#139675 (Add the AVX10 target features) - rust-lang#140286 (Check if format argument is identifier to avoid error err-emit) - rust-lang#140456 (Fix test simd/extract-insert-dyn on s390x) - rust-lang#140551 (Move some tests out of tests/ui) - rust-lang#140588 (Adjust some ui tests re. target-dependent errors) - rust-lang#140617 (Report the `unsafe_attr_outside_unsafe` lint at the closest node) - rust-lang#140626 (allow `#[rustfmt::skip]` in combination with `#[naked]`) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#140456 - fneddy:fix_s390x_codegen_simd_ext_ins_dyn, r=wesleywiser Fix test simd/extract-insert-dyn on s390x Fix the test for s390x by enabling s390x vector extension via `target_feature(enable = "vector")`(rust-lang#127506). As this is is still gated by `#![feature(s390x_target_feature)]` we need that attribute also.
Fix the test for s390x by enabling s390x vector extension via
target_feature(enable = "vector")(#127506). As this is is still gated by#![feature(s390x_target_feature)]we need that attribute also.