summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-01-12 23:04:53 +0100
committerdef <dennis@felsin9.de>2015-01-12 23:04:53 +0100
commit12593eed7d1063f76f5cf5f710c7b1c899c48b44 (patch)
tree28f142c813c81b3cff57fc98c55dadc29f4dabe8 /compiler
parentc3e4c1a101f0dd75035070f21d3124c048b0af63 (diff)
downloadNim-12593eed7d1063f76f5cf5f710c7b1c899c48b44.tar.gz
Make nimeval compile
Diffstat (limited to 'compiler')
-rw-r--r--compiler/nimeval.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nimeval.nim b/compiler/nimeval.nim
index 5693cbe91..197e8bf86 100644
--- a/compiler/nimeval.nim
+++ b/compiler/nimeval.nim
@@ -24,7 +24,7 @@ proc execute*(program: string) =
   when hasFFI: defineSymbol("nimffi")
   registerPass(verbosePass)
   registerPass(semPass)
-  registerPass(vmPass)
+  registerPass(evalPass)
 
   appendStr(searchPaths, options.libpath)
   compileSystemModule()