aboutsummaryrefslogtreecommitdiff
path: root/BinaryEncoding.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2016-03-04 10:45:52 -0800
committerDan Gohman <sunfish@mozilla.com>2016-03-04 10:45:52 -0800
commit78472b4c501815dec03d7b2cda8a25093b489359 (patch)
treed235e36d91f1be6751db48c9f282cf4cfa85e40f /BinaryEncoding.md
parent4cf0c392c171fde1ea2bf1aeb415bfd828bf0a63 (diff)
downloadnanowasm-design-78472b4c501815dec03d7b2cda8a25093b489359.tar.gz
Rename call_function to call, to match AstSemantics.md.
Diffstat (limited to 'BinaryEncoding.md')
-rw-r--r--BinaryEncoding.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md
index 35464d7..bb8555e 100644
--- a/BinaryEncoding.md
+++ b/BinaryEncoding.md
@@ -314,7 +314,7 @@ The table switch operator is then immediately followed by `case_count` case expr
| `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_function` | `0x12` | function_index = `varuint32` | call a function by its index |
+| `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 |