diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-18 11:08:48 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-21 20:46:40 -0500 |
commit | 240f5bf6f53515535be5bf3ef7632aa69ae21e3e (patch) | |
tree | dc7be78ca126c66af0aeb9f7944ebfc0ac5a211c /compiler/stranal | |
parent | be7068a6130f394dcefbcb5d09c2944deca2270d (diff) | |
download | haskell-240f5bf6f53515535be5bf3ef7632aa69ae21e3e.tar.gz |
Modules: Driver (#13009)
submodule updates: nofib, haddock
Diffstat (limited to 'compiler/stranal')
-rw-r--r-- | compiler/stranal/CprAnal.hs | 2 | ||||
-rw-r--r-- | compiler/stranal/DmdAnal.hs | 2 | ||||
-rw-r--r-- | compiler/stranal/WorkWrap.hs | 2 | ||||
-rw-r--r-- | compiler/stranal/WwLib.hs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/compiler/stranal/CprAnal.hs b/compiler/stranal/CprAnal.hs index 4b9e54c11b..3691b213b8 100644 --- a/compiler/stranal/CprAnal.hs +++ b/compiler/stranal/CprAnal.hs @@ -14,7 +14,7 @@ module CprAnal ( cprAnalProgram ) where import GhcPrelude import WwLib ( deepSplitProductType_maybe ) -import DynFlags +import GHC.Driver.Session import Demand import Cpr import CoreSyn diff --git a/compiler/stranal/DmdAnal.hs b/compiler/stranal/DmdAnal.hs index d8341c143b..da771e4412 100644 --- a/compiler/stranal/DmdAnal.hs +++ b/compiler/stranal/DmdAnal.hs @@ -15,7 +15,7 @@ module DmdAnal ( dmdAnalProgram ) where import GhcPrelude -import DynFlags +import GHC.Driver.Session import WwLib ( findTypeShape ) import Demand -- All of it import CoreSyn diff --git a/compiler/stranal/WorkWrap.hs b/compiler/stranal/WorkWrap.hs index fafe0757e7..4e579d67b8 100644 --- a/compiler/stranal/WorkWrap.hs +++ b/compiler/stranal/WorkWrap.hs @@ -20,7 +20,7 @@ import IdInfo import Type import UniqSupply import BasicTypes -import DynFlags +import GHC.Driver.Session import Demand import Cpr import WwLib diff --git a/compiler/stranal/WwLib.hs b/compiler/stranal/WwLib.hs index f74243282f..8163792b5b 100644 --- a/compiler/stranal/WwLib.hs +++ b/compiler/stranal/WwLib.hs @@ -42,7 +42,7 @@ import Unique import Maybes import Util import Outputable -import DynFlags +import GHC.Driver.Session import FastString import ListSetOps |