diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-11-30 11:15:13 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-12-11 22:42:48 -0500 |
commit | 76be0e32d6638c04521b74421a9ce2380593fb54 (patch) | |
tree | 4ed92438a09861d6d23692611f4985de51fc4264 /compiler/GHC | |
parent | 690c894616a539c59cb8e58d2bba8b9c02c5ad4c (diff) | |
download | haskell-76be0e32d6638c04521b74421a9ce2380593fb54.tar.gz |
Move SizedSeq into ghc-boot
Diffstat (limited to 'compiler/GHC')
-rw-r--r-- | compiler/GHC/ByteCode/Asm.hs | 5 | ||||
-rw-r--r-- | compiler/GHC/ByteCode/Linker.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/ByteCode/Types.hs | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/compiler/GHC/ByteCode/Asm.hs b/compiler/GHC/ByteCode/Asm.hs index ff8bacd6cc..17db8a2691 100644 --- a/compiler/GHC/ByteCode/Asm.hs +++ b/compiler/GHC/ByteCode/Asm.hs @@ -41,12 +41,11 @@ import GHC.Utils.Misc import GHC.Core.TyCon import GHC.Data.FastString +import GHC.Data.SizedSeq + import GHC.StgToCmm.Layout ( ArgRep(..) ) import GHC.Platform --- From iserv -import SizedSeq - import Control.Monad import Control.Monad.ST ( runST ) import Control.Monad.Trans.Class diff --git a/compiler/GHC/ByteCode/Linker.hs b/compiler/GHC/ByteCode/Linker.hs index 7b532b96d5..5c58d319ef 100644 --- a/compiler/GHC/ByteCode/Linker.hs +++ b/compiler/GHC/ByteCode/Linker.hs @@ -26,7 +26,6 @@ import GHC.ByteCode.Types import GHCi.RemoteTypes import GHCi.ResolvedBCO import GHCi.BreakArray -import SizedSeq import GHC.Builtin.PrimOps @@ -34,6 +33,7 @@ import GHC.Unit.Types import GHC.Unit.Module.Name import GHC.Data.FastString +import GHC.Data.SizedSeq import GHC.Utils.Panic import GHC.Utils.Outputable diff --git a/compiler/GHC/ByteCode/Types.hs b/compiler/GHC/ByteCode/Types.hs index 04f654f7eb..97304cb7f4 100644 --- a/compiler/GHC/ByteCode/Types.hs +++ b/compiler/GHC/ByteCode/Types.hs @@ -17,12 +17,12 @@ module GHC.ByteCode.Types import GHC.Prelude import GHC.Data.FastString +import GHC.Data.SizedSeq import GHC.Types.Id import GHC.Types.Name import GHC.Types.Name.Env import GHC.Utils.Outputable import GHC.Builtin.PrimOps -import SizedSeq import GHC.Core.Type import GHC.Types.SrcLoc import GHCi.BreakArray |