-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix parsing of SIMD opcode. The SIMD proposal declares its opcode with the grammar: ``` instr ::= ... | 0xFD simdop:varuint32 ... ``` `wabt` treats all instructions having prefixes as being LEB128, but I wasn't able to find such text in any 0xfc (Non-trapping Float-to-int Conversions) or 0xfe (Threading proposal for WebAssembly). Neither of them have allocated enough opcodes that it would matter yet. * Use a u8 instead of a u32, it's faster. * Add read_var_u8
- Loading branch information
1 parent
77255f7
commit 319a2e2
Showing
2 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters