diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-11-09 11:53:52 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-11-09 11:53:52 -0500 |
commit | 23d4ee74243e0d9d630c863e83403d25e926ff88 (patch) | |
tree | a7b3f4490705ab9eb503022eec6cd8271270be2e /src/compiler.sml | |
parent | bf14288c4da80f65aa920b001cf8e3070c8b4c3e (diff) |
Especialize working reasonably well; need to add new closure representation pass
Diffstat (limited to 'src/compiler.sml')
-rw-r--r-- | src/compiler.sml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/compiler.sml b/src/compiler.sml index bde16fd3..9705cfaf 100644 --- a/src/compiler.sml +++ b/src/compiler.sml @@ -411,6 +411,13 @@ val corify = { val toCorify = transform corify "corify" o toExplify +(*val reduce_local = { + func = ReduceLocal.reduce, + print = CorePrint.p_file CoreEnv.empty +} + +val toReduce_local = transform reduce_local "reduce_local" o toCorify*) + val especialize = { func = ESpecialize.specialize, print = CorePrint.p_file CoreEnv.empty |