Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion BinaryEncoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,10 @@ It is legal to have several entries with the same type.
| `unreachable` | `0x0a` | | trap immediately |
| `end` | `0x0f` | | end a block, loop, or if |

The `br_table` operator has an immediate operand which is encoded as follows:
Note that there is no explicit `if_else` opcode, as the else clause is encoded with the `else` bytecode.

The `br_table` operator has an immediate operand which is encoded as follows:

| Field | Type | Description |
| ---- | ---- | ---- |
| target_count | `varuint32` | number of targets in the target_table |
Expand Down