aboutsummaryrefslogtreecommitdiff
path: root/CodeGen.hs
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-08-20 14:47:15 +0200
committertomsmeding <tom.smeding@gmail.com>2017-08-20 14:47:15 +0200
commitc36fd5a174ab74465b8562c5fb4fa69a25dfca79 (patch)
treecebd29dfb75e4713934a995ad13b957769194e7d /CodeGen.hs
parentf8d264f2b18fccdc3b96d8fb66656128a25137f2 (diff)
Fourth
Diffstat (limited to 'CodeGen.hs')
-rw-r--r--CodeGen.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeGen.hs b/CodeGen.hs
index 764a900..905bee5 100644
--- a/CodeGen.hs
+++ b/CodeGen.hs
@@ -61,7 +61,7 @@ setSpillSize sz = modify $ \s -> s {spillSize = sz}
codegen :: IRProgram -> Error String
codegen (IRProgram vars funcs) = do
x64 <- execCGMonad $ mapM_ codegenFunc funcs
- traceShowM x64
+ -- traceShowM x64
X64.verify x64
varcg <- liftM unlines $ mapM codegenVar vars
x64opt <- x64Optimise x64