Where is i16.extend8_s
lygstate opened this issue · 3 comments
lygstate commented
Where is i16.extend8_s
binji commented
WebAssembly doesn't have an i16
value type, so that instruction wouldn't be useful. Instead, you can use i32.extend8_s
followed by i32.store16
to write a 16-bit value to linear memory.
lygstate commented
gocha waht's happened. I do think at least webassembly need have i16 & fp16 support.
i8 suppot seems not necessary.