diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-01-13 02:00:16 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-01-13 02:00:16 +0100 |
commit | 0125c5f3e4e36bbf32c8783524e1db78c7ad7ff1 (patch) | |
tree | e43b2bcef2c856315ca86e68b26750c972423ca3 | |
parent | a94ba527b2548cc2912321dd6d5782b9ef13b062 (diff) | |
parent | 12593eed7d1063f76f5cf5f710c7b1c899c48b44 (diff) | |
download | Nim-0125c5f3e4e36bbf32c8783524e1db78c7ad7ff1.tar.gz |
Merge pull request #1942 from def-/nimeval
Make nimeval compile
-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() |