We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 351d782 commit 98f42a7Copy full SHA for 98f42a7
src/tools/miri/src/eval.rs
@@ -434,15 +434,10 @@ pub fn eval_entry<'tcx>(
434
// Perform the main execution.
435
let res: thread::Result<InterpResult<'_, !>> =
436
panic::catch_unwind(AssertUnwindSafe(|| ecx.run_threads()));
437
- let res = res.unwrap_or_else(|panic_payload| {
+ let Err(res) = res.unwrap_or_else(|panic_payload| {
438
ecx.handle_ice();
439
panic::resume_unwind(panic_payload)
440
});
441
- let res = match res {
442
- Err(res) => res,
443
- // `Ok` can never happen
444
- Ok(never) => match never {},
445
- };
446
447
// Machine cleanup. Only do this if all threads have terminated; threads that are still running
448
// might cause Stacked Borrows errors (https://github.com/rust-lang/miri/issues/2396).
0 commit comments