diff options
author | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-04 03:52:50 +0000 |
---|---|---|
committer | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-04 03:52:50 +0000 |
commit | ee6bba6f3d80c56b47bc623bc6e4f076be1f046f (patch) | |
tree | a690669e830106daace9aa7ff577b41092ad2469 /compiler/nativeGen/RegAlloc/Graph/SpillCost.hs | |
parent | a12e845684c10955bc594cdb20d1f13fae14873d (diff) | |
download | haskell-ee6bba6f3d80c56b47bc623bc6e4f076be1f046f.tar.gz |
NCG: Move RegLiveness -> RegAlloc.Liveness
Diffstat (limited to 'compiler/nativeGen/RegAlloc/Graph/SpillCost.hs')
-rw-r--r-- | compiler/nativeGen/RegAlloc/Graph/SpillCost.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nativeGen/RegAlloc/Graph/SpillCost.hs b/compiler/nativeGen/RegAlloc/Graph/SpillCost.hs index c897a4d724..1d37cf71d6 100644 --- a/compiler/nativeGen/RegAlloc/Graph/SpillCost.hs +++ b/compiler/nativeGen/RegAlloc/Graph/SpillCost.hs @@ -17,7 +17,7 @@ module RegAlloc.Graph.SpillCost ( where import GraphBase -import RegLiveness +import RegAlloc.Liveness import RegAllocInfo import Instrs import Regs @@ -83,7 +83,7 @@ slurpSpillCostInfo cmm = countLIs rsLiveEntry instrs | otherwise - = error "RegLiveness.slurpSpillCostInfo: bad block" + = error "RegAlloc.SpillCost.slurpSpillCostInfo: bad block" countLIs _ [] = return () |