Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2ccb0cc
Auto merge of #161045 - folkertdev:stdarch-sync-2026-09-13, r=folkertdev
bors Aug 13, 2026
9fbebff
Rollup merge of #157428 - nia-e:allocator-refactor, r=clarfonthey
jhpratt Aug 13, 2026
75e961c
Auto merge of #161075 - jhpratt:rollup-sSE7Oua, r=jhpratt
bors Aug 14, 2026
9355013
Auto merge of #160982 - jdonszelmann:fix-unic-ucd, r=adwinwhite,lcnr
bors Aug 14, 2026
96d11af
Auto merge of #161077 - nnethercote:CanonicalizerState, r=jdonszelmann
bors Aug 14, 2026
e85647f
Auto merge of #160331 - Walnut356:pretty-std-repr, r=Kobzol
bors Aug 16, 2026
60f5d93
Auto merge of #160889 - nnethercote:simplify-MaybeBorrowedLocals, r=c…
bors Aug 16, 2026
ae1dc00
Auto merge of #160916 - Kobzol:bootstrap-llvm-2, r=jieyouxu
bors Aug 16, 2026
31803ca
Auto merge of #160529 - cuviper:deps, r=Mark-Simulacrum
bors Aug 16, 2026
b444fd3
Auto merge of #161082 - nnethercote:overhaul-CoroutineMarker, r=mejrs
bors Aug 17, 2026
557a439
Auto merge of #160408 - fereidani:str_pattern, r=joboet
bors Aug 17, 2026
6c388bb
Auto merge of #161151 - jackh726:issue-160669-subtyping-live, r=lqd
bors Aug 18, 2026
26fdeb4
Auto merge of #160622 - Zoxc:always-link-std-in-rustc, r=Kobzol
bors Aug 18, 2026
c5e0d23
Auto merge of #160619 - Kivooeo:enable-next-solver, r=lcnr,jdonszelma…
bors Aug 21, 2026
dbe6a3f
Auto merge of #161274 - sjwang05:fast-visit, r=lcnr
bors Aug 22, 2026
9534ddd
Rollup merge of #161558 - folkertdev:stdarch-sync-2026-09-22, r=folke…
jhpratt Aug 22, 2026
57997af
Rollup merge of #159887 - AayushMainali-Github:fix-142737-forward-dis…
jhpratt Aug 22, 2026
4ed797a
Rollup merge of #160229 - Urgau:extend-drop_useless-drop-in-place, r=…
jhpratt Aug 22, 2026
495a687
Rollup merge of #160949 - beetrees:f128-inline-asm-sparc, r=folkertdev
jhpratt Aug 22, 2026
787b5c4
Rollup merge of #156160 - kx0101:cow-vec-symmetric-partialeq, r=Mark-…
jhpratt Aug 22, 2026
7ec78d9
Rollup merge of #160914 - ada4a:GenericTypeVisitable-bounds, r=Jonath…
jhpratt Aug 22, 2026
2b244b7
Rollup merge of #161341 - adwinwhite:overflow-fcw-chain, r=lcnr,adwin…
jhpratt Aug 22, 2026
362a558
Rollup merge of #161530 - zakrad:regr-test-128525, r=JonathanBrouwer
jhpratt Aug 22, 2026
e6b1741
Auto merge of #161566 - jhpratt:rollup-PxRQM5u, r=jhpratt
bors Aug 23, 2026
1c68acf
Auto merge of #161466 - alexcrichton:update-llvm, r=cuviper
bors Aug 23, 2026
626c4ca
silence new warning in stdarch
RalfJung Aug 23, 2026
6f0ba89
Auto merge of #160302 - RalfJung:soft-float-no-avx2, r=workingjubilee
bors Aug 23, 2026
4fa56e9
Auto merge of #161416 - flip1995:clippy-subtree-update, r=samueltardieu
bors Aug 23, 2026
baf2d81
Prepare for merging from rust-lang/rust
invalid-email-address Aug 24, 2026
ad41f33
Merge ref 'da5114692c9e' from rust-lang/rust
invalid-email-address Aug 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions crates/core_arch/src/aarch64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
//! [arm_ref]: http://infocenter.arm.com/help/topic/com.arm.doc.ihi0073a/IHI0073A_arm_neon_intrinsics_ref.pdf
//! [arm_dat]: https://developer.arm.com/technologies/neon/intrinsics

#![cfg_attr(
all(target_arch = "aarch64", target_abi = "softfloat"),
// Just allow the warning: anyone soundly using the intrinsics has to enable
// the target feature, and that will generate a warning for them.
allow(aarch64_softfloat_neon)
)]

mod mte;
#[unstable(feature = "stdarch_aarch64_mte", issue = "129010")]
pub use self::mte::*;
Expand Down
6 changes: 0 additions & 6 deletions crates/core_arch/src/arm_shared/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@
//!
//! - [ACLE Q2 2018](https://developer.arm.com/docs/101028/latest)

#![cfg_attr(
all(target_arch = "aarch64", target_abi = "softfloat"),
// Just allow the warning: anyone soundly using the intrinsics has to enable
// the target feature, and that will generate a warning for them.
allow(aarch64_softfloat_neon)
)]
// Only for 'neon' submodule
#![allow(non_camel_case_types)]

Expand Down
3 changes: 3 additions & 0 deletions crates/core_arch/src/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
//! `core_arch`

#![allow(unknown_lints, unnecessary_transmutes)]
// Allow these FCW: anyone soundly using the intrinsics has to enable
// the target feature, and that will generate a warning for them.
#![allow(aarch64_softfloat_neon, x86_softfloat_sse)]

#[macro_use]
mod macros;
Expand Down
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1e5ee356374211706221b71b6106d297a646ee57
da5114692c9ebe46b869488c5f34f92eb10b98c1