Skip to content

Commit 73452b3

Browse files
committed
Auto merge of #2756 - RalfJung:rustup, r=RalfJung
Rustup
2 parents 6a682a7 + 5a267f8 commit 73452b3

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c54c8cbac882e149e04a9e1f2d146fd548ae30ae
1+
279f1c9d8c26a8d227ae8ab806d262bb784b251b

src/bin/miri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ impl rustc_driver::Callbacks for MiriCompilerCalls {
6161
) -> Compilation {
6262
compiler.session().abort_if_errors();
6363

64-
queries.global_ctxt().unwrap().peek_mut().enter(|tcx| {
64+
queries.global_ctxt().unwrap().enter(|tcx| {
6565
init_late_loggers(tcx);
6666
if !tcx.sess.crate_types().contains(&CrateType::Executable) {
6767
tcx.sess.fatal("miri only makes sense on bin crates");

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
clippy::single_match,
2222
clippy::useless_format,
2323
clippy::derive_partial_eq_without_eq,
24-
clippy::derive_hash_xor_eq,
24+
clippy::derived_hash_with_manual_eq,
2525
clippy::too_many_arguments,
2626
clippy::type_complexity,
2727
clippy::single_element_loop,

tests/pass/issues/issue-miri-2068.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(pin_macro)]
2-
31
use core::future::Future;
42
use core::pin::Pin;
53
use core::task::{Context, Poll};

tests/pass/stacked-borrows/future-self-referential.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![feature(pin_macro)]
2-
31
use std::future::*;
42
use std::marker::PhantomPinned;
53
use std::pin::*;

0 commit comments

Comments
 (0)