Skip to content

Commit b61cb1c

Browse files
committed
remove unused frame_size field
1 parent 7c5474d commit b61cb1c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

crates/wasmi/src/engine/executor/handler/dispatch.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ pub struct WasmFuncCall<'a, T, State> {
4747
callee_ip: Ip,
4848
callee_sp: Sp,
4949
instance: Instance,
50-
frame_size: u16,
5150
state: State,
5251
}
5352

@@ -60,7 +59,6 @@ impl<'a, T, State> WasmFuncCall<'a, T, State> {
6059
callee_ip: self.callee_ip,
6160
callee_sp: self.callee_sp,
6261
instance: self.instance,
63-
frame_size: self.frame_size,
6462
state,
6563
}
6664
}
@@ -152,7 +150,6 @@ pub fn init_wasm_func_call<'a, T>(
152150
code,
153151
callee_ip,
154152
callee_sp,
155-
frame_size,
156153
instance,
157154
state: PhantomData,
158155
})

0 commit comments

Comments
 (0)