diff options
author | Araq <rumpf_a@web.de> | 2018-09-03 09:34:31 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-09-03 09:34:31 +0200 |
commit | 7278f28740a1bce4bb8896b4f7553694e7970f8f (patch) | |
tree | b6feccac81a020865bbc013b55424bf1b64f7472 /compiler/vm.nim | |
parent | 7ace82440fe230ee6959971ff1aaaccdad85d21d (diff) | |
download | Nim-7278f28740a1bce4bb8896b4f7553694e7970f8f.tar.gz |
fixes the remaining fixable Nimrod->Nim renamings; closes #2032
Diffstat (limited to 'compiler/vm.nim')
-rw-r--r-- | compiler/vm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim index 312a2085b..9143051a9 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -820,7 +820,7 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): TFullReg = regs[ra].intVal = ord((regs[rb].node.kind == nkNilLit and regs[rc].node.kind == nkNilLit) or regs[rb].node == regs[rc].node) - of opcEqNimrodNode: + of opcEqNimNode: decodeBC(rkInt) regs[ra].intVal = ord(exprStructuralEquivalent(regs[rb].node, regs[rc].node, |