diff options
author | Richard Eisenberg <rae@richarde.dev> | 2021-06-01 15:32:34 -0400 |
---|---|---|
committer | Richard Eisenberg <rae@richarde.dev> | 2021-06-01 15:33:24 -0400 |
commit | ff6a88ec8bedf59295c2c154c1056b80569fe756 (patch) | |
tree | 1b19dc9bf743448fb105ac00528ab9bfbfca0459 /compiler/GHC/ByteCode | |
parent | 6db8a0f76ec45d47060e28bb303e9eef60bdb16b (diff) | |
download | haskell-wip/lower-parser-deps.tar.gz |
A little import wrangling. Not much accomplishedwip/lower-parser-deps
Diffstat (limited to 'compiler/GHC/ByteCode')
-rw-r--r-- | compiler/GHC/ByteCode/Asm.hs | 3 | ||||
-rw-r--r-- | compiler/GHC/ByteCode/Types.hs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/compiler/GHC/ByteCode/Asm.hs b/compiler/GHC/ByteCode/Asm.hs index 6b9d4a9223..f5b1f14661 100644 --- a/compiler/GHC/ByteCode/Asm.hs +++ b/compiler/GHC/ByteCode/Asm.hs @@ -39,7 +39,8 @@ import GHC.Data.FastString import GHC.Data.SizedSeq import GHC.StgToCmm.Layout ( ArgRep(..) ) -import GHC.Cmm.Expr +import GHC.Cmm.Reg.Global +import GHC.Cmm.Reg.Set import GHC.Cmm.CallConv ( tupleRegsCover ) import GHC.Platform import GHC.Platform.Profile diff --git a/compiler/GHC/ByteCode/Types.hs b/compiler/GHC/ByteCode/Types.hs index 673838654d..6cc53826d2 100644 --- a/compiler/GHC/ByteCode/Types.hs +++ b/compiler/GHC/ByteCode/Types.hs @@ -43,7 +43,8 @@ import qualified Data.IntMap as IntMap import Data.Maybe (catMaybes) import qualified GHC.Exts.Heap as Heap import GHC.Stack.CCS -import GHC.Cmm.Expr ( GlobalRegSet, emptyRegSet, regSetToList ) +import GHC.Cmm.Reg.Set ( emptyRegSet, regSetToList ) +import GHC.Cmm.Reg.Global ( GlobalRegSet ) -- ----------------------------------------------------------------------------- -- Compiled Byte Code |