diff options
author | Araq <rumpf_a@web.de> | 2014-12-28 00:42:24 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-28 00:42:24 +0100 |
commit | 41587a533959e4269be29f4f238d524048ac303a (patch) | |
tree | 30c53323f16acb2cb0599a0b999f4aaf63ea105a /compiler/vmdef.nim | |
parent | 010b8f85c73671782de956c9dcd2cb3e8441041e (diff) | |
download | Nim-41587a533959e4269be29f4f238d524048ac303a.tar.gz |
fixes #1781
Diffstat (limited to 'compiler/vmdef.nim')
-rw-r--r-- | compiler/vmdef.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim index c06606318..3d49cb130 100644 --- a/compiler/vmdef.nim +++ b/compiler/vmdef.nim @@ -164,7 +164,8 @@ type slotTempInt, # some temporary int slotTempFloat, # some temporary float slotTempStr, # some temporary string - slotTempComplex # some complex temporary (s.node field is used) + slotTempComplex, # some complex temporary (s.node field is used) + slotTempPerm # slot is temporary but permanent (hack) PProc* = ref object blocks*: seq[TBlock] # blocks; temp data structure |