diff options
author | Ian Lynagh <igloo@earth.li> | 2012-06-13 16:44:55 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-06-13 16:44:55 +0100 |
commit | 2b015ce92253f6c64230b80603091c1fa426cf2e (patch) | |
tree | 13b06c7b810fd4ada8a01d3fc4e68b0945ebd520 /compiler/nativeGen/RegAlloc/Graph/Main.hs | |
parent | 7937a9212159012606939fcbc6b38d9fe5db5584 (diff) | |
download | haskell-2b015ce92253f6c64230b80603091c1fa426cf2e.tar.gz |
Remove more unused Platform arguments
Diffstat (limited to 'compiler/nativeGen/RegAlloc/Graph/Main.hs')
-rw-r--r-- | compiler/nativeGen/RegAlloc/Graph/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nativeGen/RegAlloc/Graph/Main.hs b/compiler/nativeGen/RegAlloc/Graph/Main.hs index 4e359a1c79..bae3de8f16 100644 --- a/compiler/nativeGen/RegAlloc/Graph/Main.hs +++ b/compiler/nativeGen/RegAlloc/Graph/Main.hs @@ -120,7 +120,7 @@ regAlloc_spin dflags spinCount triv regsFree slotsFree debug_codeGraphs code -- build a map of the cost of spilling each instruction -- this will only actually be computed if we have to spill something. let spillCosts = foldl' plusSpillCostInfo zeroSpillCostInfo - $ map (slurpSpillCostInfo platform) code + $ map slurpSpillCostInfo code -- the function to choose regs to leave uncolored let spill = chooseSpill spillCosts @@ -220,7 +220,7 @@ regAlloc_spin dflags spinCount triv regsFree slotsFree debug_codeGraphs code -- NOTE: we have to reverse the SCCs here to get them back into the reverse-dependency -- order required by computeLiveness. If they're not in the correct order -- that function will panic. - code_relive <- mapM (regLiveness platform . reverseBlocksInTops) code_spilled + code_relive <- mapM (regLiveness . reverseBlocksInTops) code_spilled -- record what happened in this stage for debugging let stat = |