diff options
author | Ian Lynagh <igloo@earth.li> | 2009-07-24 21:08:25 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-07-24 21:08:25 +0000 |
commit | 1e50fd4185479a62e02d987bdfcb1c62712859ca (patch) | |
tree | b586e107b36bd38cb7e93d7a6bd57191f4c46f15 /compiler/cmm/CmmSpillReload.hs | |
parent | 52cacd61834e6f448b8904bfa52c4a5a402e8698 (diff) | |
download | haskell-1e50fd4185479a62e02d987bdfcb1c62712859ca.tar.gz |
Remove GHC's haskell98 dependency
Diffstat (limited to 'compiler/cmm/CmmSpillReload.hs')
-rw-r--r-- | compiler/cmm/CmmSpillReload.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/cmm/CmmSpillReload.hs b/compiler/cmm/CmmSpillReload.hs index 1f88b7679a..c452525253 100644 --- a/compiler/cmm/CmmSpillReload.hs +++ b/compiler/cmm/CmmSpillReload.hs @@ -23,12 +23,12 @@ import ZipCfg import ZipCfgCmmRep import ZipDataflow -import Monad +import Control.Monad import Outputable hiding (empty) import qualified Outputable as PP import UniqSet -import Maybe +import Data.Maybe import Prelude hiding (zip) -- The point of this module is to insert spills and reloads to |