diff options
Diffstat (limited to 'compiler/vm.nim')
-rw-r--r-- | compiler/vm.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim index b02de405e..c0ce047ea 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -352,7 +352,6 @@ proc execute(c: PCtx, start: int) = if not inSet(regs[ra], regs[rb]): addSon(regs[ra], copyTree(regs[rb])) of opcExcl: decodeB(nkCurly) - # XXX arg we need types here :-( var b = newNodeIT(nkCurly, regs[rb].info, regs[rb].typ) addSon(b, regs[rb]) var r = diffSets(regs[ra], b) |