SPARC NCG: Fix some haddock problems.
[ghc-hetmet.git] / compiler / nativeGen / RegAlloc / Linear / StackMap.hs
index 56382aa..5656941 100644 (file)
@@ -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 }