summary refs log tree commit diff stats
path: root/compiler/vmdef.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-08-08 21:10:54 +0200
committerAraq <rumpf_a@web.de>2013-08-08 21:10:54 +0200
commit288cd05f89009b7432a0e95fec0b1cf78c4ea7e5 (patch)
tree7bbf312e7cd93fd1761bc9c79e5702c4e4e6e37c /compiler/vmdef.nim
parent06b3852143b2f3857da0090b9c18ac63812ec3cc (diff)
downloadNim-288cd05f89009b7432a0e95fec0b1cf78c4ea7e5.tar.gz
new VM: register allocator bugfix; implemented more magics
Diffstat (limited to 'compiler/vmdef.nim')
-rw-r--r--compiler/vmdef.nim4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim
index 90d23e642..a76e035a0 100644
--- a/compiler/vmdef.nim
+++ b/compiler/vmdef.nim
@@ -78,6 +78,10 @@ type
     opcNGetType,
     opcNStrVal,
     
+    opcNSetIntVal,
+    opcNSetFloatVal, opcNSetSymbol, opcNSetIdent, opcNSetType, opcNSetStrVal,
+    opcNNewNimNode, opcNCopyNimNode, opcNCopyNimTree,
+    
     opcSlurp,
     opcGorge,
     opcParseExprToAst,