fix haddock submodule pointer
[ghc-hetmet.git] / compiler / nativeGen / RegAlloc / Linear / StackMap.hs
index 56382aa..62bf6ad 100644 (file)
@@ -19,7 +19,7 @@ module RegAlloc.Linear.StackMap (
 
 where
 
-import RegAllocInfo    (maxSpillSlots)
+import RegAlloc.Linear.FreeRegs
 
 import Outputable
 import UniqFM
@@ -31,11 +31,10 @@ type StackSlot = Int
 
 data StackMap 
        = StackMap 
+       { -- | The slots that are still available to be allocated.
+         stackMapFreeSlots     :: [StackSlot]
 
-       -- | The slots that are still available to be allocated.
-       { stackMapFreeSlots     :: [StackSlot]
-
-       -- | Assignment of vregs to stack slots.
+         -- | Assignment of vregs to stack slots.
        , stackMapAssignment    :: UniqFM StackSlot }