aboutsummaryrefslogtreecommitdiff
path: root/BinaryEncoding.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2016-03-09 06:58:31 -0800
committerDan Gohman <sunfish@mozilla.com>2016-03-09 06:58:31 -0800
commitb806cc344a48f8e4ec610bae2695b94be8b7f8bb (patch)
tree4828e6f5f3ef52ea47f0c219687eb2017b172891 /BinaryEncoding.md
parent2001bcfbb33578e3e0d546a4edf38bc2c149aaf0 (diff)
parentceb79f177722f3bf75fdf91e120f1a6b0d4e3bc7 (diff)
downloadnanowasm-design-b806cc344a48f8e4ec610bae2695b94be8b7f8bb.tar.gz
Merge pull request #589 from WebAssembly/load_global
Remove the nonstandard load_global and store_global opcodes.
Diffstat (limited to 'BinaryEncoding.md')
-rw-r--r--BinaryEncoding.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md
index 93fec5b..186b783 100644
--- a/BinaryEncoding.md
+++ b/BinaryEncoding.md
@@ -352,8 +352,6 @@ out of range, `br_table` branches to the default target.
| `f32.const` | `0x0d` | value = `uint32` | a constant value interpreted as `f32` |
| `get_local` | `0x0e` | local_index = `varuint32` | read a local variable or parameter |
| `set_local` | `0x0f` | local_index = `varuint32` | write a local variable or parameter |
-| `load_global` | `0x10` | index = `varuint32` | * nonstandard internal opcode |
-| `store_global` | `0x11` | index = `varuint32` | * nonstandard internal opcode |
| `call` | `0x12` | function_index = `varuint32` | call a function by its index |
| `call_indirect` | `0x13` | signature_index = `varuint32` | call a function indirect with an expected signature |
| `call_import` | `0x1f` | import_index = `varuint32` | call an imported function by its index |