Remove useless UNPACK pragmas
[ghc-hetmet.git] / compiler / nativeGen / RegAlloc / Linear / Base.hs
index 2626232..9fd090c 100644 (file)
@@ -51,14 +51,14 @@ type BlockAssignment
 --
 data Loc 
        -- | vreg is in a register
-       = InReg   {-# UNPACK #-}  !RealReg
+       = InReg   !RealReg
 
        -- | vreg is held in a stack slot
        | InMem   {-# UNPACK #-}  !StackSlot
 
 
        -- | vreg is held in both a register and a stack slot
-       | InBoth  {-# UNPACK #-}  !RealReg
+       | InBoth   !RealReg
                   {-# UNPACK #-} !StackSlot
        deriving (Eq, Show, Ord)