diff options
Diffstat (limited to 'BinaryEncoding.md')
| -rw-r--r-- | BinaryEncoding.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md index 6ee15d9..03acda4 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -333,8 +333,8 @@ 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 | -| target_table | `varuint32*` | target entries that indicate an outer block or loop to which to break | -| default_target | `varuint32` | an outer block or loop to which to break in the default case | +| target_table | `uint32*` | target entries that indicate an outer block or loop to which to break | +| default_target | `uint32` | an outer block or loop to which to break in the default case | The `br_table` operator implements an indirect branch. It accepts one `i32` expression as input and branches to the block or loop at the given offset within the `target_table`. If the input value is |
