From 3286bff406666f032e346353a154d3c689f8e3e1 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Wed, 4 Jul 2018 00:41:58 -0400 Subject: [PATCH] Remove debug instruction. --- The-Dst-Abstract-Machine-Bytecode.md | 1 - 1 file changed, 1 deletion(-) diff --git a/The-Dst-Abstract-Machine-Bytecode.md b/The-Dst-Abstract-Machine-Bytecode.md index 39b6bfd..0e2ce97 100644 --- a/The-Dst-Abstract-Machine-Bytecode.md +++ b/The-Dst-Abstract-Machine-Bytecode.md @@ -171,7 +171,6 @@ failure to return or error. | `call` | `(call dest callee)` | $dest = call($callee, args) | | `clo` | `(clo dest index)` | $dest = closure(defs[$index]) | | `cmp` | `(cmp dest lhs rhs)` | $dest = dst\_compare($lhs, $rhs) | -| `debug` | `(debug)` | Suspend current fiber | | `div` | `(div dest lhs rhs)` | $dest = $lhs / $rhs | | `divi` | `(divi dest lhs rhs)` | $dest = $lhs /i $rhs | | `divim` | `(divim dest lhs im)` | $dest = $lhs /i im |