Skip to content

Commit 47a7e99

Browse files
committed
Rustup to rustc 1.84.0-nightly (798fb83f7 2024-10-16)
1 parent bf2da67 commit 47a7e99

4 files changed

+4
-4
lines changed

patches/0022-coretests-Disable-not-compiling-tests.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ index 42a26ae..5ac1042 100644
3838
@@ -1,3 +1,4 @@
3939
+#![cfg(test)]
4040
// tidy-alphabetical-start
41-
#![cfg_attr(bootstrap, feature(const_mut_refs))]
4241
#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
42+
#![cfg_attr(test, feature(cfg_match))]
4343
--
4444
2.21.0 (Apple Git-122)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ index 1e336bf..35e6f54 100644
1717
@@ -1,6 +1,5 @@
1818
#![cfg(test)]
1919
// tidy-alphabetical-start
20-
#![cfg_attr(bootstrap, feature(const_mut_refs))]
2120
-#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
2221
#![cfg_attr(test, feature(cfg_match))]
2322
#![feature(alloc_layout_extra)]
23+
#![feature(array_chunks)]
2424
diff --git a/atomic.rs b/atomic.rs
2525
index b735957..ea728b6 100644
2626
--- a/atomic.rs

patches/0028-coretests-Disable-long-running-tests.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ index 8402833..84592e0 100644
1212
--- a/slice.rs
1313
+++ b/slice.rs
1414
@@ -1809,6 +1809,7 @@ fn sort_unstable() {
15-
assert!(v == [0xDEADBEEF]);
15+
}
1616
}
1717

1818
+/*

rust-toolchain

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

0 commit comments

Comments
 (0)