Skip to content

Commit bf69dfa

Browse files
committed
Rustup to rustc 1.96.0-nightly (d9563937f 2026-03-03)
1 parent 9b5c962 commit bf69dfa

2 files changed

Lines changed: 2 additions & 13 deletions

File tree

patches/0027-stdlib-128bit-atomic-operations.patch

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,7 @@ diff --git a/library/core/src/sync/atomic.rs b/library/core/src/sync/atomic.rs
3737
index bf2b6d59f88..d5ccce03bbf 100644
3838
--- a/library/core/src/sync/atomic.rs
3939
+++ b/library/core/src/sync/atomic.rs
40-
@@ -300,8 +300,6 @@ impl_atomic_primitive!(AtomicI32(i32), size("32"), align(4));
41-
impl_atomic_primitive!(AtomicU32(u32), size("32"), align(4));
42-
impl_atomic_primitive!(AtomicI64(i64), size("64"), align(8));
43-
impl_atomic_primitive!(AtomicU64(u64), size("64"), align(8));
44-
-impl_atomic_primitive!(AtomicI128(i128), size("128"), align(16));
45-
-impl_atomic_primitive!(AtomicU128(u128), size("128"), align(16));
46-
47-
#[cfg(target_pointer_width = "16")]
48-
impl_atomic_primitive!(AtomicIsize(isize), size("ptr"), align(2));
49-
@@ -3585,44 +3585,6 @@ pub const fn as_ptr(&self) -> *mut $int_type {
40+
@@ -3585,42 +3585,6 @@ pub const fn as_ptr(&self) -> *mut $int_type {
5041
8,
5142
u64 AtomicU64
5243
}
@@ -62,7 +53,6 @@ index bf2b6d59f88..d5ccce03bbf 100644
6253
- unstable(feature = "integer_atomics", issue = "99069"),
6354
- rustc_const_unstable(feature = "integer_atomics", issue = "99069"),
6455
- rustc_const_unstable(feature = "integer_atomics", issue = "99069"),
65-
- rustc_diagnostic_item = "AtomicI128",
6656
- "i128",
6757
- "#![feature(integer_atomics)]\n\n",
6858
- atomic_min, atomic_max,
@@ -81,7 +71,6 @@ index bf2b6d59f88..d5ccce03bbf 100644
8171
- unstable(feature = "integer_atomics", issue = "99069"),
8272
- rustc_const_unstable(feature = "integer_atomics", issue = "99069"),
8373
- rustc_const_unstable(feature = "integer_atomics", issue = "99069"),
84-
- rustc_diagnostic_item = "AtomicU128",
8574
- "u128",
8675
- "#![feature(integer_atomics)]\n\n",
8776
- atomic_umin, atomic_umax,

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-02-24"
2+
channel = "nightly-2026-03-04"
33
components = ["rust-src", "rustc-dev", "llvm-tools", "rustfmt"]
44
profile = "minimal"

0 commit comments

Comments
 (0)