diff options
author | Araq <rumpf_a@web.de> | 2013-08-22 08:38:47 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-08-22 08:38:47 +0200 |
commit | 6f1fc1b5ba7f74fde21467f5f0bfd294ad9292f3 (patch) | |
tree | 1bc09471b81b6b0b1a9830e4d0858a21cb248a78 /compiler/vm.nim | |
parent | 50403afb5c8d49f2d9046498ea714251a3e4ad90 (diff) | |
download | Nim-6f1fc1b5ba7f74fde21467f5f0bfd294ad9292f3.tar.gz |
fixed and documented computedGoto pragma
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) |