diff options
-rw-r--r-- | compiler/vm.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim index 826356c68..23fd6c8b1 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -690,7 +690,8 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): TFullReg = of opcEqNimrodNode: decodeBC(rkInt) regs[ra].intVal = - ord(exprStructuralEquivalent(regs[rb].node, regs[rc].node)) + ord(exprStructuralEquivalent(regs[rb].node, regs[rc].node, + strictSymEquality=true)) of opcXor: decodeBC(rkInt) regs[ra].intVal = ord(regs[rb].intVal != regs[rc].intVal) |