We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d85a0 commit a254403Copy full SHA for a254403
crates/codegen/src/isa/evm/mod.rs
@@ -1160,8 +1160,9 @@ impl LowerBackend for EvmBackend {
1160
// continuation address for the call. We therefore allow the marker to
1161
// appear anywhere in the action list and split around it.
1162
let suffix: SmallVec<[Action; 2]> = actions.drain(cont_pos + 1..).collect();
1163
+ let marker = actions.remove(cont_pos);
1164
debug_assert_eq!(
- actions.remove(cont_pos),
1165
+ marker,
1166
Action::PushContinuationOffset,
1167
"expected continuation marker at split point"
1168
);
0 commit comments