Skip to content

Commit f5393cc

Browse files
committed
Rustup to rustc 1.97.0-nightly (365c0e1d7 2026-05-06)
1 parent d8c63ee commit f5393cc

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

patches/0001-portable-simd-Disable-f16-usage-in-portable-simd.patch

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,21 @@ index 510f4c9..175cbce 100644
154154

155155
-impl_trait! { f16 { bits: u16, mask: i16 }, f32 { bits: u32, mask: i32 }, f64 { bits: u64, mask: i64 } }
156156
+impl_trait! { f32 { bits: u32, mask: i32 }, f64 { bits: u64, mask: i64 } }
157+
diff --git a/crates/core_simd/src/simd/prelude.rs b/crates/core_simd/src/simd/prelude.rs
158+
index 51b8def..6e93f16 100644
159+
--- a/crates/core_simd/src/simd/prelude.rs
160+
+++ b/crates/core_simd/src/simd/prelude.rs
161+
@@ -14,10 +14,6 @@ pub use super::{
162+
simd_swizzle,
163+
};
164+
165+
-#[rustfmt::skip]
166+
-#[doc(no_inline)]
167+
-pub use super::{f16x1, f16x2, f16x4, f16x8, f16x16, f16x32, f16x64};
168+
-
169+
#[rustfmt::skip]
170+
#[doc(no_inline)]
171+
pub use super::{f32x1, f32x2, f32x4, f32x8, f32x16, f32x32, f32x64};
157172
diff --git a/crates/core_simd/src/vector.rs b/crates/core_simd/src/vector.rs
158173
index fbef69f..c8e0b8c 100644
159174
--- a/crates/core_simd/src/vector.rs

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2026-04-28"
2+
channel = "nightly-2026-05-07"
33
components = ["rust-src", "rustc-dev", "llvm-tools", "rustfmt"]
44
profile = "minimal"

0 commit comments

Comments
 (0)