summary refs log tree commit diff stats
path: root/compiler/vm.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-11-07 00:25:54 +0100
committerAraq <rumpf_a@web.de>2013-11-07 00:25:54 +0100
commit4cda0861f507c414bfd622a1f759353c2c623941 (patch)
tree9c9987d493eb8f60bac779ae2d21fd4baaa10760 /compiler/vm.nim
parent27ec76dd3a6e3690e8bb0813a9267172ee19b34d (diff)
downloadNim-4cda0861f507c414bfd622a1f759353c2c623941.tar.gz
tcnstseq works again
Diffstat (limited to 'compiler/vm.nim')
-rw-r--r--compiler/vm.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim
index c70f8b41e..1596e4220 100644
--- a/compiler/vm.nim
+++ b/compiler/vm.nim
@@ -959,7 +959,7 @@ proc rawExecute(c: PCtx, start: int, tos: PStackFrame): PNode =
 
 proc fixType(result, n: PNode) {.inline.} =
   # XXX do it deeply for complex values
-  if result.typ.isNil: result.typ = n.typ
+  #if result.typ.isNil: result.typ = n.typ
 
 proc execute(c: PCtx, start: int): PNode =
   var tos = PStackFrame(prc: nil, comesFrom: 0, next: nil)