Skip to content

Commit 98f42a7

Browse files
committed
Fix miri
1 parent 351d782 commit 98f42a7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/tools/miri/src/eval.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -434,15 +434,10 @@ pub fn eval_entry<'tcx>(
434434
// Perform the main execution.
435435
let res: thread::Result<InterpResult<'_, !>> =
436436
panic::catch_unwind(AssertUnwindSafe(|| ecx.run_threads()));
437-
let res = res.unwrap_or_else(|panic_payload| {
437+
let Err(res) = res.unwrap_or_else(|panic_payload| {
438438
ecx.handle_ice();
439439
panic::resume_unwind(panic_payload)
440440
});
441-
let res = match res {
442-
Err(res) => res,
443-
// `Ok` can never happen
444-
Ok(never) => match never {},
445-
};
446441

447442
// Machine cleanup. Only do this if all threads have terminated; threads that are still running
448443
// might cause Stacked Borrows errors (https://github.com/rust-lang/miri/issues/2396).

0 commit comments

Comments
 (0)