@@ -22,7 +22,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
22
22
ExternAbi :: Rust ,
23
23
& [ this. mplace_to_ref ( & msg) ?] ,
24
24
None ,
25
- StackPopCleanup :: Goto { ret : None , unwind } ,
25
+ ReturnContinuation :: Goto { ret : None , unwind } ,
26
26
)
27
27
}
28
28
@@ -41,7 +41,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
41
41
ExternAbi :: Rust ,
42
42
& [ this. mplace_to_ref ( & msg) ?] ,
43
43
None ,
44
- StackPopCleanup :: Goto { ret : None , unwind : mir:: UnwindAction :: Unreachable } ,
44
+ ReturnContinuation :: Goto { ret : None , unwind : mir:: UnwindAction :: Unreachable } ,
45
45
)
46
46
}
47
47
@@ -70,7 +70,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
70
70
ExternAbi :: Rust ,
71
71
& [ index, len] ,
72
72
None ,
73
- StackPopCleanup :: Goto { ret : None , unwind } ,
73
+ ReturnContinuation :: Goto { ret : None , unwind } ,
74
74
) ?;
75
75
}
76
76
MisalignedPointerDereference { required, found } => {
@@ -91,7 +91,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
91
91
ExternAbi :: Rust ,
92
92
& [ required, found] ,
93
93
None ,
94
- StackPopCleanup :: Goto { ret : None , unwind } ,
94
+ ReturnContinuation :: Goto { ret : None , unwind } ,
95
95
) ?;
96
96
}
97
97
@@ -104,7 +104,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
104
104
ExternAbi :: Rust ,
105
105
& [ ] ,
106
106
None ,
107
- StackPopCleanup :: Goto { ret : None , unwind } ,
107
+ ReturnContinuation :: Goto { ret : None , unwind } ,
108
108
) ?;
109
109
}
110
110
}
0 commit comments