diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-10-26 22:19:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 22:19:05 +0200 |
commit | 3bdc0005211b0d543e0ff48ccf6bc5a9f2a2a30b (patch) | |
tree | d17e520691de67784767dafd103357233b46959d /compiler | |
parent | cf01945f54f099c268850c720986ad6c9bbdb51e (diff) | |
download | Nim-3bdc0005211b0d543e0ff48ccf6bc5a9f2a2a30b.tar.gz |
[backport] fix #15595 procvar `==` works in VM (#15724)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/vm.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim index ac2feac26..761186dc3 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -994,8 +994,10 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): TFullReg = let nb = regs[rb].node let nc = regs[rc].node if nb.kind != nc.kind: discard - elif (nb == nc) or (nb.kind == nkNilLit): ret = true - elif nb.kind == nkIntLit and nb.intVal == nc.intVal: # TODO: nkPtrLit + elif (nb == nc) or (nb.kind == nkNilLit): ret = true # intentional + elif sameConstant(nb, nc): ret = true + # this also takes care of procvar's, represented as nkTupleConstr, eg (nil, nil) + elif nb.kind == nkIntLit and nc.kind == nkIntLit and nb.intVal == nc.intVal: # TODO: nkPtrLit let tb = nb.getTyp let tc = nc.getTyp ret = tb.kind in PtrLikeKinds and tc.kind == tb.kind |