diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-11-27 10:46:45 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-11-27 10:46:45 -0500 |
commit | ca833ef09c3bbb51e38b98f70c480a767c83c829 (patch) | |
tree | 96563b578170d86459afeab9a2ffa7ece83ef2bf /src/compiler.sml | |
parent | 59bc998793e4c715d038555143ac3d83f2b3bc42 (diff) |
Stop using redundant Defunc pass
Diffstat (limited to 'src/compiler.sml')
-rw-r--r-- | src/compiler.sml | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/compiler.sml b/src/compiler.sml index aac4a924..0ff4ee6a 100644 --- a/src/compiler.sml +++ b/src/compiler.sml @@ -446,22 +446,12 @@ val shake = { val toShake1 = transform shake "shake1" o toCore_untangle -val defunc = { - func = Defunc.defunc, - print = CorePrint.p_file CoreEnv.empty -} - -val toDefunc = transform defunc "defunc" o toShake1 - -val toCore_untangle' = transform core_untangle "core_untangle'" o toDefunc -val toShake1' = transform shake "shake1'" o toCore_untangle' - val tag = { func = Tag.tag, print = CorePrint.p_file CoreEnv.empty } -val toTag = transform tag "tag" o toShake1' +val toTag = transform tag "tag" o toShake1 val reduce = { func = Reduce.reduce, |