diff options
author | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-04 04:38:02 +0000 |
---|---|---|
committer | Ben.Lippmeier@anu.edu.au <unknown> | 2009-02-04 04:38:02 +0000 |
commit | 2984649a87ffad1753be0c950ed18cfc40f55fea (patch) | |
tree | 15985d0b5c0eb5e1a59d0f8acad3e69376528a48 /compiler/nativeGen/RegAlloc/Linear/StackMap.hs | |
parent | e8043f339e23328e3457696589edaa1ab7d60a64 (diff) | |
download | haskell-2984649a87ffad1753be0c950ed18cfc40f55fea.tar.gz |
SPARC NCG: Fix some haddock problems.
Diffstat (limited to 'compiler/nativeGen/RegAlloc/Linear/StackMap.hs')
-rw-r--r-- | compiler/nativeGen/RegAlloc/Linear/StackMap.hs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/nativeGen/RegAlloc/Linear/StackMap.hs b/compiler/nativeGen/RegAlloc/Linear/StackMap.hs index 56382aa804..56569415bb 100644 --- a/compiler/nativeGen/RegAlloc/Linear/StackMap.hs +++ b/compiler/nativeGen/RegAlloc/Linear/StackMap.hs @@ -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 } |