Skip to content

Commit

Permalink
correct endif wasm loader
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzzabiyaka committed Jan 27, 2025
1 parent 46bc07b commit 8723135
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion core/iwasm/interpreter/wasm_interp_fast.c
Original file line number Diff line number Diff line change
Expand Up @@ -7027,7 +7027,6 @@ wasm_interp_call_func_bytecode(WASMModuleInstance *module,
}
case SIMD_i32x4_add:
{

SIMD_DOUBLE_OP(simde_wasm_i32x4_add);
break;
}
Expand Down
2 changes: 1 addition & 1 deletion core/iwasm/interpreter/wasm_loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -13228,10 +13228,10 @@ wasm_loader_prepare_bytecode(WASMModule *module, WASMFunction *func,
skip_label();
emit_label(WASM_OP_GET_GLOBAL_128);
}
#endif
#endif /* end of WASM_ENABLE_SIMDE */
emit_uint32(loader_ctx, global_idx);
PUSH_OFFSET_TYPE(global_type);
#endif /* end of WASM_ENABLE_FAST_INTERP */
break;
}

Expand Down

0 comments on commit 8723135

Please sign in to comment.