summaryrefslogtreecommitdiff
path: root/compiler/stranal
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/stranal
parent818b3c38e7548f4720815f76969238d82c9650f7 (diff)
downloadhaskell-18a346a4b5a02b8c62e8eedb91b35c2d8e754b96.tar.gz
Modules: Core (#13009)
Update submodule: haddock
Diffstat (limited to 'compiler/stranal')
-rw-r--r--compiler/stranal/CprAnal.hs8
-rw-r--r--compiler/stranal/DmdAnal.hs10
-rw-r--r--compiler/stranal/WorkWrap.hs4
-rw-r--r--compiler/stranal/WwLib.hs14
4 files changed, 18 insertions, 18 deletions
diff --git a/compiler/stranal/CprAnal.hs b/compiler/stranal/CprAnal.hs
index 1f244d7a0e..008eb422f8 100644
--- a/compiler/stranal/CprAnal.hs
+++ b/compiler/stranal/CprAnal.hs
@@ -23,13 +23,13 @@ import Outputable
import VarEnv
import BasicTypes
import Data.List
-import DataCon
+import GHC.Core.DataCon
import Id
import IdInfo
import GHC.Core.Utils ( exprIsHNF, dumpIdInfoOfProgram )
-import TyCon
-import Type
-import FamInstEnv
+import GHC.Core.TyCon
+import GHC.Core.Type
+import GHC.Core.FamInstEnv
import Util
import ErrUtils ( dumpIfSet_dyn, DumpFormat (..) )
import Maybes ( isJust, isNothing )
diff --git a/compiler/stranal/DmdAnal.hs b/compiler/stranal/DmdAnal.hs
index 5c5181da12..8f5cb6ddea 100644
--- a/compiler/stranal/DmdAnal.hs
+++ b/compiler/stranal/DmdAnal.hs
@@ -24,14 +24,14 @@ import Outputable
import VarEnv
import BasicTypes
import Data.List ( mapAccumL )
-import DataCon
+import GHC.Core.DataCon
import Id
import IdInfo
import GHC.Core.Utils
-import TyCon
-import Type
-import Coercion ( Coercion, coVarsOfCo )
-import FamInstEnv
+import GHC.Core.TyCon
+import GHC.Core.Type
+import GHC.Core.Coercion ( Coercion, coVarsOfCo )
+import GHC.Core.FamInstEnv
import Util
import Maybes ( isJust )
import TysWiredIn
diff --git a/compiler/stranal/WorkWrap.hs b/compiler/stranal/WorkWrap.hs
index 070b2f9046..26554d0a7a 100644
--- a/compiler/stranal/WorkWrap.hs
+++ b/compiler/stranal/WorkWrap.hs
@@ -17,7 +17,7 @@ import GHC.Core.FVs ( exprFreeVars )
import Var
import Id
import IdInfo
-import Type
+import GHC.Core.Type
import UniqSupply
import BasicTypes
import GHC.Driver.Session
@@ -26,7 +26,7 @@ import Cpr
import WwLib
import Util
import Outputable
-import FamInstEnv
+import GHC.Core.FamInstEnv
import MonadUtils
#include "HsVersions.h"
diff --git a/compiler/stranal/WwLib.hs b/compiler/stranal/WwLib.hs
index 49e8a7f70b..1102ee52f3 100644
--- a/compiler/stranal/WwLib.hs
+++ b/compiler/stranal/WwLib.hs
@@ -19,7 +19,7 @@ import GHC.Core
import GHC.Core.Utils ( exprType, mkCast, mkDefaultCase, mkSingleAltCase )
import Id
import IdInfo ( JoinArity )
-import DataCon
+import GHC.Core.DataCon
import Demand
import Cpr
import GHC.Core.Make ( mkAbsentErrorApp, mkCoreUbxTup
@@ -30,13 +30,13 @@ import TysPrim ( voidPrimTy )
import Literal ( absentLiteralOf, rubbishLit )
import VarEnv ( mkInScopeSet )
import VarSet ( VarSet )
-import Type
-import Predicate ( isClassPred )
-import GHC.Types.RepType ( isVoidTy, typePrimRep )
-import Coercion
-import FamInstEnv
+import GHC.Core.Type
+import GHC.Core.Predicate ( isClassPred )
+import GHC.Types.RepType ( isVoidTy, typePrimRep )
+import GHC.Core.Coercion
+import GHC.Core.FamInstEnv
import BasicTypes ( Boxity(..) )
-import TyCon
+import GHC.Core.TyCon
import UniqSupply
import Unique
import Maybes