aboutsummaryrefslogtreecommitdiff
path: root/BinaryEncoding.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2016-03-04 12:00:46 -0800
committerDan Gohman <sunfish@mozilla.com>2016-03-04 12:00:46 -0800
commitceb79f177722f3bf75fdf91e120f1a6b0d4e3bc7 (patch)
tree26f26c71bd5b1226798bb1e64c439234c464104b /BinaryEncoding.md
parent0146d348c19c6f4032f6222eeabddfc6648cb93d (diff)
downloadnanowasm-design-ceb79f177722f3bf75fdf91e120f1a6b0d4e3bc7.tar.gz
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 80b14d6..19715fe 100644
--- a/BinaryEncoding.md
+++ b/BinaryEncoding.md
@@ -314,8 +314,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` | `0x09` | import_index = `varuint32` | call an imported function by its index |