diff options
author | def <dennis@felsin9.de> | 2015-01-12 23:04:53 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-01-12 23:04:53 +0100 |
commit | 12593eed7d1063f76f5cf5f710c7b1c899c48b44 (patch) | |
tree | 28f142c813c81b3cff57fc98c55dadc29f4dabe8 /compiler | |
parent | c3e4c1a101f0dd75035070f21d3124c048b0af63 (diff) | |
download | Nim-12593eed7d1063f76f5cf5f710c7b1c899c48b44.tar.gz |
Make nimeval compile
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/nimeval.nim | 2 |
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() |