-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Fix test simd/extract-insert-dyn on s390x #140456
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
base: master
Are you sure you want to change the base?
Conversation
rustbot has assigned @Mark-Simulacrum. Use |
r? wesleywiser |
d00b33a
to
24af1d9
Compare
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
☔ 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.
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
3b9ae29
Compare
This comment has been minimized.
This comment has been minimized.
3b9ae29
to
44d8257
Compare
thank you :) |
This comment has been minimized.
This comment has been minimized.
44d8257
to
c48b0e8
Compare
This comment has been minimized.
This comment has been minimized.
c48b0e8
to
f3f3248
Compare
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
61488e5
Compare
everybody is mad at borrow checker while I am fighting with formatting 😭 |
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.