summaryrefslogtreecommitdiff
path: root/compiler/GHC/Stg
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-03-02 11:43:03 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-03-16 23:53:24 -0400
commit18a346a4b5a02b8c62e8eedb91b35c2d8e754b96 (patch)
tree59121ffd5a46c1987a184db3842a3089f6250d11 /compiler/GHC/Stg
parent818b3c38e7548f4720815f76969238d82c9650f7 (diff)
downloadhaskell-18a346a4b5a02b8c62e8eedb91b35c2d8e754b96.tar.gz
Modules: Core (#13009)
Update submodule: haddock
Diffstat (limited to 'compiler/GHC/Stg')
-rw-r--r--compiler/GHC/Stg/CSE.hs2
-rw-r--r--compiler/GHC/Stg/Lift/Monad.hs2
-rw-r--r--compiler/GHC/Stg/Lint.hs4
-rw-r--r--compiler/GHC/Stg/Syntax.hs8
-rw-r--r--compiler/GHC/Stg/Unarise.hs4
5 files changed, 10 insertions, 10 deletions
diff --git a/compiler/GHC/Stg/CSE.hs b/compiler/GHC/Stg/CSE.hs
index ec497a8a59..ea9c8e61fa 100644
--- a/compiler/GHC/Stg/CSE.hs
+++ b/compiler/GHC/Stg/CSE.hs
@@ -88,7 +88,7 @@ module GHC.Stg.CSE (stgCse) where
import GhcPrelude
-import DataCon
+import GHC.Core.DataCon
import Id
import GHC.Stg.Syntax
import Outputable
diff --git a/compiler/GHC/Stg/Lift/Monad.hs b/compiler/GHC/Stg/Lift/Monad.hs
index 8cc84172d2..8c0a6d27fc 100644
--- a/compiler/GHC/Stg/Lift/Monad.hs
+++ b/compiler/GHC/Stg/Lift/Monad.hs
@@ -34,7 +34,7 @@ import Outputable
import OrdList
import GHC.Stg.Subst
import GHC.Stg.Syntax
-import Type
+import GHC.Core.Type
import UniqSupply
import Util
import VarEnv
diff --git a/compiler/GHC/Stg/Lint.hs b/compiler/GHC/Stg/Lint.hs
index 471bbf763e..3d06815832 100644
--- a/compiler/GHC/Stg/Lint.hs
+++ b/compiler/GHC/Stg/Lint.hs
@@ -47,11 +47,11 @@ import BasicTypes ( TopLevelFlag(..), isTopLevel )
import CostCentre ( isCurrentCCS )
import Id ( Id, idType, isJoinId, idName )
import VarSet
-import DataCon
+import GHC.Core.DataCon
import GHC.Core ( AltCon(..) )
import Name ( getSrcLoc, nameIsLocalOrFrom )
import ErrUtils ( MsgDoc, Severity(..), mkLocMessage )
-import Type
+import GHC.Core.Type
import GHC.Types.RepType
import SrcLoc
import Outputable
diff --git a/compiler/GHC/Stg/Syntax.hs b/compiler/GHC/Stg/Syntax.hs
index 1b8381b1b7..534cdbfbcb 100644
--- a/compiler/GHC/Stg/Syntax.hs
+++ b/compiler/GHC/Stg/Syntax.hs
@@ -68,7 +68,7 @@ import CostCentre ( CostCentreStack )
import Data.ByteString ( ByteString )
import Data.Data ( Data )
import Data.List ( intersperse )
-import DataCon
+import GHC.Core.DataCon
import GHC.Driver.Session
import ForeignCall ( ForeignCall )
import Id
@@ -80,9 +80,9 @@ import GHC.Driver.Packages ( isDynLinkName )
import GHC.Platform
import GHC.Core.Ppr( {- instances -} )
import PrimOp ( PrimOp, PrimCall )
-import TyCon ( PrimRep(..), TyCon )
-import Type ( Type )
-import GHC.Types.RepType ( typePrimRep1 )
+import GHC.Core.TyCon ( PrimRep(..), TyCon )
+import GHC.Core.Type ( Type )
+import GHC.Types.RepType ( typePrimRep1 )
import Util
import Data.List.NonEmpty ( NonEmpty, toList )
diff --git a/compiler/GHC/Stg/Unarise.hs b/compiler/GHC/Stg/Unarise.hs
index cf47d204af..98738470b2 100644
--- a/compiler/GHC/Stg/Unarise.hs
+++ b/compiler/GHC/Stg/Unarise.hs
@@ -204,7 +204,7 @@ import GhcPrelude
import BasicTypes
import GHC.Core
-import DataCon
+import GHC.Core.DataCon
import FastString (FastString, mkFastString)
import Id
import Literal
@@ -214,7 +214,7 @@ import MonadUtils (mapAccumLM)
import Outputable
import GHC.Types.RepType
import GHC.Stg.Syntax
-import Type
+import GHC.Core.Type
import TysPrim (intPrimTy,wordPrimTy,word64PrimTy)
import TysWiredIn
import UniqSupply