Calculate func_index instead of adding an extra field to wasm frame

This commit is contained in:
Georgii Rylov
2025-01-28 11:09:32 +00:00
parent 9ff8052329
commit 6bfc08849a
4 changed files with 4 additions and 10 deletions

View File

@ -26,8 +26,6 @@ typedef struct WASMInterpFrame {
/* Instruction pointer of the bytecode array. */
uint8 *ip;
uint32 func_index;
#if WASM_ENABLE_FAST_JIT != 0
uint8 *jitted_return_addr;
#endif