summaryrefslogtreecommitdiff
path: root/compiler/GHC/CoreToStg.hs
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-03-18 10:44:56 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-03-29 17:28:51 -0400
commit1941ef4f050c0dfcb68229641fcbbde3a10f1072 (patch)
tree8e25a61af77696d3022d35cc277b5db5af540f03 /compiler/GHC/CoreToStg.hs
parent1c446220250dcada51d4bb33a0cc7d8ce572e8b6 (diff)
downloadhaskell-1941ef4f050c0dfcb68229641fcbbde3a10f1072.tar.gz
Modules: Types (#13009)
Update Haddock submodule Metric Increase: haddock.compiler
Diffstat (limited to 'compiler/GHC/CoreToStg.hs')
-rw-r--r--compiler/GHC/CoreToStg.hs24
1 files changed, 12 insertions, 12 deletions
diff --git a/compiler/GHC/CoreToStg.hs b/compiler/GHC/CoreToStg.hs
index a866f57b6b..0ebe4a8f90 100644
--- a/compiler/GHC/CoreToStg.hs
+++ b/compiler/GHC/CoreToStg.hs
@@ -26,27 +26,27 @@ import GHC.Stg.Syntax
import GHC.Core.Type
import GHC.Types.RepType
import GHC.Core.TyCon
-import MkId ( coercionTokenId )
-import Id
-import IdInfo
+import GHC.Types.Id.Make ( coercionTokenId )
+import GHC.Types.Id
+import GHC.Types.Id.Info
import GHC.Core.DataCon
-import CostCentre
-import VarEnv
-import Module
-import Name ( isExternalName, nameModule_maybe )
-import BasicTypes ( Arity )
+import GHC.Types.CostCentre
+import GHC.Types.Var.Env
+import GHC.Types.Module
+import GHC.Types.Name ( isExternalName, nameModule_maybe )
+import GHC.Types.Basic ( Arity )
import TysWiredIn ( unboxedUnitDataCon, unitDataConId )
-import Literal
+import GHC.Types.Literal
import Outputable
import MonadUtils
import FastString
import Util
import GHC.Driver.Session
import GHC.Driver.Ways
-import ForeignCall
-import Demand ( isUsedOnce )
+import GHC.Types.ForeignCall
+import GHC.Types.Demand ( isUsedOnce )
import PrimOp ( PrimCall(..), primOpWrapperId )
-import SrcLoc ( mkGeneralSrcSpan )
+import GHC.Types.SrcLoc ( mkGeneralSrcSpan )
import PrelNames ( unsafeEqualityProofName )
import Data.List.NonEmpty (nonEmpty, toList)