diff options
| author | titzer <titzer@google.com> | 2016-10-30 14:21:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-30 14:21:17 +0100 |
| commit | 50ecc153fc49168e87196a7169bf24a766299066 (patch) | |
| tree | 9bb1e9b6f3b30d3da634526f604bee8fcf354422 /BinaryEncoding.md | |
| parent | 3283ba0f2c809f757fb608d819f14e1e1cd288b6 (diff) | |
| download | nanowasm-design-50ecc153fc49168e87196a7169bf24a766299066.tar.gz | |
Fix i32/i64
Diffstat (limited to 'BinaryEncoding.md')
| -rw-r--r-- | BinaryEncoding.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md index 6d3d9bf..1612765 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -60,7 +60,7 @@ All types are distinguished by a negative `varint7` values that is the first byt | Opcode | Type constructor | |--------|------------------| | `-0x01` (i.e., the byte `0x7f`) | `i32` | -| `-0x02` (i.e., the byte `0x7e`) | `i32` | +| `-0x02` (i.e., the byte `0x7e`) | `i64` | | `-0x03` (i.e., the byte `0x7d`) | `f32` | | `-0x04` (i.e., the byte `0x7c`) | `f64` | | `-0x10` (i.e., the byte `0x70`) | `anyfunc` | |
