summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/RegAlloc/Linear/StackMap.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/nativeGen/RegAlloc/Linear/StackMap.hs')
-rw-r--r--compiler/nativeGen/RegAlloc/Linear/StackMap.hs7
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 }