mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-11-27 10:00:59 +00:00
* fix: remove SIMD prefix handling from interpreter and update opcode definitions * test: add case for classic interpreter handling of unsupported SIMD opcodes
14 lines
237 B
Plaintext
14 lines
237 B
Plaintext
(module
|
|
(type (;0;) (func))
|
|
(func (;0;) (type 0)
|
|
i32.const 0
|
|
i32.const 16
|
|
v128.load
|
|
i32.const 32
|
|
v128.load
|
|
i64x2.eq
|
|
v128.store)
|
|
(memory (;0;) 1 1)
|
|
(export "mem" (memory 0))
|
|
(export "main" (func 0)))
|