aboutsummaryrefslogtreecommitdiff
path: root/RegAlloc.hs
diff options
context:
space:
mode:
Diffstat (limited to 'RegAlloc.hs')
-rw-r--r--RegAlloc.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/RegAlloc.hs b/RegAlloc.hs
index 3a41aac..d63538b 100644
--- a/RegAlloc.hs
+++ b/RegAlloc.hs
@@ -44,7 +44,7 @@ regalloc vars' regs aliaspairs =
then spillAtInterval st index
else let (regchoice, fr) = case find (`elem` wantedregs) (stFreeRegs st) of
Nothing -> (head (stFreeRegs st), tail (stFreeRegs st))
- Just wr -> trace ("Pair-allocated " ++ show name ++ " in " ++ show wr) $
+ Just wr -> {-trace ("Pair-allocated " ++ show name ++ " in " ++ show wr) $-}
(wr, stFreeRegs st \\ [wr])
allocrev = stAlloc st ++ [AllocReg regchoice]
active = sortBy (compare `on` snd . (ints !!)) $ index : stActive st