aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Eval.hs b/src/Eval.hs
index f57a47c..097613f 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -405,7 +405,7 @@ dumpFile conf wr conv = do
case M.lookup entryFunction env of
Nothing -> print $ ContextualError (UndefinedIdentifier entryFunction)
(Context "" (_nicePath conf))
- Just EnvDef { _exp = e } -> wr $ conv e
+ Just EnvDef { _exp = e } -> optimizeToTarget conf e >>= wr . conv
evalFileConf :: EvalConf -> IO ()
evalFileConf conf = do