diff options
Diffstat (limited to 'compiler/GHC/ByteCode')
-rw-r--r-- | compiler/GHC/ByteCode/Asm.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/ByteCode/InfoTable.hs | 4 | ||||
-rw-r--r-- | compiler/GHC/ByteCode/Instr.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/ByteCode/Types.hs | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/compiler/GHC/ByteCode/Asm.hs b/compiler/GHC/ByteCode/Asm.hs index 79b0bc2766..c781a3a6d1 100644 --- a/compiler/GHC/ByteCode/Asm.hs +++ b/compiler/GHC/ByteCode/Asm.hs @@ -27,7 +27,7 @@ import GHC.Driver.Types import Name import NameSet import Literal -import TyCon +import GHC.Core.TyCon import FastString import GHC.StgToCmm.Layout ( ArgRep(..) ) import GHC.Runtime.Heap.Layout diff --git a/compiler/GHC/ByteCode/InfoTable.hs b/compiler/GHC/ByteCode/InfoTable.hs index 80a259d94d..1c2a89b02b 100644 --- a/compiler/GHC/ByteCode/InfoTable.hs +++ b/compiler/GHC/ByteCode/InfoTable.hs @@ -17,8 +17,8 @@ import GHC.Driver.Session import GHC.Driver.Types import Name ( Name, getName ) import NameEnv -import DataCon ( DataCon, dataConRepArgTys, dataConIdentity ) -import TyCon ( TyCon, tyConFamilySize, isDataTyCon, tyConDataCons ) +import GHC.Core.DataCon ( DataCon, dataConRepArgTys, dataConIdentity ) +import GHC.Core.TyCon ( TyCon, tyConFamilySize, isDataTyCon, tyConDataCons ) import GHC.Types.RepType import GHC.StgToCmm.Layout ( mkVirtConstrSizes ) import GHC.StgToCmm.Closure ( tagForCon, NonVoid (..) ) diff --git a/compiler/GHC/ByteCode/Instr.hs b/compiler/GHC/ByteCode/Instr.hs index bff6bb5df0..8643752e2b 100644 --- a/compiler/GHC/ByteCode/Instr.hs +++ b/compiler/GHC/ByteCode/Instr.hs @@ -25,7 +25,7 @@ import Unique import Id import GHC.Core import Literal -import DataCon +import GHC.Core.DataCon import VarSet import PrimOp import GHC.Runtime.Heap.Layout diff --git a/compiler/GHC/ByteCode/Types.hs b/compiler/GHC/ByteCode/Types.hs index ce80c53279..491c4f99f9 100644 --- a/compiler/GHC/ByteCode/Types.hs +++ b/compiler/GHC/ByteCode/Types.hs @@ -22,7 +22,7 @@ import NameEnv import Outputable import PrimOp import SizedSeq -import Type +import GHC.Core.Type import SrcLoc import GHCi.BreakArray import GHCi.RemoteTypes |