Skip to content

Commit 4aae050

Browse files
committed
Auto merge of #3704 - rust-lang:rustup-2024-06-23, r=RalfJung
Automatic Rustup
2 parents be67edb + 2071ac2 commit 4aae050

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7a08f84627ff3035de4d66ff3209e5fc93165dcb
1+
acb62737aca7045f331e7a05adc38bed213e278d

src/alloc_bytes.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,8 @@ impl AllocBytes for MiriAllocBytes {
112112
fn as_mut_ptr(&mut self) -> *mut u8 {
113113
self.ptr
114114
}
115+
116+
fn as_ptr(&self) -> *const u8 {
117+
self.ptr
118+
}
115119
}

src/concurrency/thread.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -643,8 +643,7 @@ impl<'tcx> ThreadManager<'tcx> {
643643
if !self.threads[joined_thread_id].state.is_terminated() {
644644
trace!(
645645
"{:?} blocked on {:?} when trying to join",
646-
self.active_thread,
647-
joined_thread_id
646+
self.active_thread, joined_thread_id
648647
);
649648
// The joined thread is still running, we need to wait for it.
650649
// Unce we get unblocked, perform the appropriate synchronization.

tests/fail/intrinsic_fallback_is_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(rustc_attrs, effects)]
1+
#![feature(rustc_attrs)]
22

33
#[rustc_intrinsic]
44
#[rustc_nounwind]

0 commit comments

Comments
 (0)