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/GHC/Stg | |
parent | be7068a6130f394dcefbcb5d09c2944deca2270d (diff) | |
download | haskell-240f5bf6f53515535be5bf3ef7632aa69ae21e3e.tar.gz |
Modules: Driver (#13009)
submodule updates: nofib, haddock
Diffstat (limited to 'compiler/GHC/Stg')
-rw-r--r-- | compiler/GHC/Stg/Lift.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/Stg/Lift/Analysis.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/Stg/Lift/Monad.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/Stg/Lint.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/Stg/Pipeline.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/Stg/Syntax.hs | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/compiler/GHC/Stg/Lift.hs b/compiler/GHC/Stg/Lift.hs index 0f1a4ccbcb..a0223707d7 100644 --- a/compiler/GHC/Stg/Lift.hs +++ b/compiler/GHC/Stg/Lift.hs @@ -20,7 +20,7 @@ where import GhcPrelude import BasicTypes -import DynFlags +import GHC.Driver.Session import Id import GHC.Stg.FVs ( annBindingFreeVars ) import GHC.Stg.Lift.Analysis diff --git a/compiler/GHC/Stg/Lift/Analysis.hs b/compiler/GHC/Stg/Lift/Analysis.hs index 881d0340a5..b85c460f10 100644 --- a/compiler/GHC/Stg/Lift/Analysis.hs +++ b/compiler/GHC/Stg/Lift/Analysis.hs @@ -24,7 +24,7 @@ import GhcPrelude import BasicTypes import Demand -import DynFlags +import GHC.Driver.Session import Id import GHC.Runtime.Heap.Layout ( WordOff ) import GHC.Stg.Syntax diff --git a/compiler/GHC/Stg/Lift/Monad.hs b/compiler/GHC/Stg/Lift/Monad.hs index 5dd7ab8d65..8cc84172d2 100644 --- a/compiler/GHC/Stg/Lift/Monad.hs +++ b/compiler/GHC/Stg/Lift/Monad.hs @@ -26,7 +26,7 @@ import GhcPrelude import BasicTypes import CostCentre ( isCurrentCCS, dontCareCCS ) -import DynFlags +import GHC.Driver.Session import FastString import Id import Name diff --git a/compiler/GHC/Stg/Lint.hs b/compiler/GHC/Stg/Lint.hs index d2a0b8980e..48d77d0903 100644 --- a/compiler/GHC/Stg/Lint.hs +++ b/compiler/GHC/Stg/Lint.hs @@ -41,7 +41,7 @@ import GhcPrelude import GHC.Stg.Syntax -import DynFlags +import GHC.Driver.Session import Bag ( Bag, emptyBag, isEmptyBag, snocBag, bagToList ) import BasicTypes ( TopLevelFlag(..), isTopLevel ) import CostCentre ( isCurrentCCS ) diff --git a/compiler/GHC/Stg/Pipeline.hs b/compiler/GHC/Stg/Pipeline.hs index 4b6a36536f..457466291d 100644 --- a/compiler/GHC/Stg/Pipeline.hs +++ b/compiler/GHC/Stg/Pipeline.hs @@ -25,7 +25,7 @@ import GHC.Stg.CSE ( stgCse ) import GHC.Stg.Lift ( stgLiftLams ) import Module ( Module ) -import DynFlags +import GHC.Driver.Session import ErrUtils import UniqSupply import Outputable diff --git a/compiler/GHC/Stg/Syntax.hs b/compiler/GHC/Stg/Syntax.hs index 5f52784cb8..eee0e6c6b2 100644 --- a/compiler/GHC/Stg/Syntax.hs +++ b/compiler/GHC/Stg/Syntax.hs @@ -69,14 +69,14 @@ import Data.ByteString ( ByteString ) import Data.Data ( Data ) import Data.List ( intersperse ) import DataCon -import DynFlags +import GHC.Driver.Session import ForeignCall ( ForeignCall ) import Id import VarSet import Literal ( Literal, literalType ) import Module ( Module ) import Outputable -import Packages ( isDllName ) +import GHC.Driver.Packages ( isDllName ) import GHC.Platform import PprCore ( {- instances -} ) import PrimOp ( PrimOp, PrimCall ) |