@@ -22,7 +22,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
2222 ExternAbi :: Rust ,
2323 & [ this. mplace_to_ref ( & msg) ?] ,
2424 None ,
25- StackPopCleanup :: Goto { ret : None , unwind } ,
25+ ReturnContinuation :: Goto { ret : None , unwind } ,
2626 )
2727 }
2828
@@ -41,7 +41,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
4141 ExternAbi :: Rust ,
4242 & [ this. mplace_to_ref ( & msg) ?] ,
4343 None ,
44- StackPopCleanup :: Goto { ret : None , unwind : mir:: UnwindAction :: Unreachable } ,
44+ ReturnContinuation :: Goto { ret : None , unwind : mir:: UnwindAction :: Unreachable } ,
4545 )
4646 }
4747
@@ -70,7 +70,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
7070 ExternAbi :: Rust ,
7171 & [ index, len] ,
7272 None ,
73- StackPopCleanup :: Goto { ret : None , unwind } ,
73+ ReturnContinuation :: Goto { ret : None , unwind } ,
7474 ) ?;
7575 }
7676 MisalignedPointerDereference { required, found } => {
@@ -91,7 +91,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
9191 ExternAbi :: Rust ,
9292 & [ required, found] ,
9393 None ,
94- StackPopCleanup :: Goto { ret : None , unwind } ,
94+ ReturnContinuation :: Goto { ret : None , unwind } ,
9595 ) ?;
9696 }
9797
@@ -104,7 +104,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
104104 ExternAbi :: Rust ,
105105 & [ ] ,
106106 None ,
107- StackPopCleanup :: Goto { ret : None , unwind } ,
107+ ReturnContinuation :: Goto { ret : None , unwind } ,
108108 ) ?;
109109 }
110110 }
0 commit comments