aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2024-01-21 11:55:55 +0100
committerMarvin Borner2024-01-21 11:56:43 +0100
commitfaf61ef00caa6ffe4e54c5a98232dafb905b9b26 (patch)
tree6c9e1c9bb41b17e2db8641a36099789a1882e73a /src/Eval.hs
parentaf754df7380b664fea6295813ee7dc64642c8444 (diff)
Targetted dumping and (un)bblc
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