summary refs log tree commit diff stats
path: root/compiler/vm.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-08-22 08:38:47 +0200
committerAraq <rumpf_a@web.de>2013-08-22 08:38:47 +0200
commit6f1fc1b5ba7f74fde21467f5f0bfd294ad9292f3 (patch)
tree1bc09471b81b6b0b1a9830e4d0858a21cb248a78 /compiler/vm.nim
parent50403afb5c8d49f2d9046498ea714251a3e4ad90 (diff)
downloadNim-6f1fc1b5ba7f74fde21467f5f0bfd294ad9292f3.tar.gz
fixed and documented computedGoto pragma
Diffstat (limited to 'compiler/vm.nim')
-rw-r--r--compiler/vm.nim1
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)