mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-12-11 10:02:51 +00:00
Fast-interp should report unsupport opcode
when meeting simd opcode on non-posix platforms
This commit is contained in:
parent
071e2aaed5
commit
cf9785e131
|
|
@ -7534,6 +7534,9 @@ wasm_interp_call_func_bytecode(WASMModuleInstance *module,
|
||||||
HANDLE_OP(EXT_OP_LOOP)
|
HANDLE_OP(EXT_OP_LOOP)
|
||||||
HANDLE_OP(EXT_OP_IF)
|
HANDLE_OP(EXT_OP_IF)
|
||||||
HANDLE_OP(EXT_OP_BR_TABLE_CACHE)
|
HANDLE_OP(EXT_OP_BR_TABLE_CACHE)
|
||||||
|
#if WASM_ENABLE_SIMDE == 0
|
||||||
|
HANDLE_OP(WASM_OP_SIMD_PREFIX)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
wasm_set_exception(module, "unsupported opcode");
|
wasm_set_exception(module, "unsupported opcode");
|
||||||
goto got_exception;
|
goto got_exception;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user