diff options
author | Luite Stegeman <stegeman@gmail.com> | 2021-01-27 11:48:42 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-03-20 07:49:15 -0400 |
commit | 7de3532f0317032f75b76150c5d3a6f76178be04 (patch) | |
tree | b2d75538bde38581bbb5447889e9810f47e51a0f /compiler/GHC/Stg | |
parent | 0107f3568d060b4c979aa3740465c4f6ca4c2bba (diff) | |
download | haskell-7de3532f0317032f75b76150c5d3a6f76178be04.tar.gz |
Transfer tickish things to GHC.Types.Tickish
Metric Increase:
MultiLayerModules
Diffstat (limited to 'compiler/GHC/Stg')
-rw-r--r-- | compiler/GHC/Stg/FVs.hs | 2 | ||||
-rw-r--r-- | compiler/GHC/Stg/Syntax.hs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/compiler/GHC/Stg/FVs.hs b/compiler/GHC/Stg/FVs.hs index a3d8686507..62053001a6 100644 --- a/compiler/GHC/Stg/FVs.hs +++ b/compiler/GHC/Stg/FVs.hs @@ -49,7 +49,7 @@ import GHC.Prelude import GHC.Stg.Syntax import GHC.Types.Id import GHC.Types.Var.Set -import GHC.Core ( GenTickish(Breakpoint) ) +import GHC.Types.Tickish ( GenTickish(Breakpoint) ) import GHC.Utils.Misc import Data.Maybe ( mapMaybe ) diff --git a/compiler/GHC/Stg/Syntax.hs b/compiler/GHC/Stg/Syntax.hs index 72d6760f6f..03ba9b5549 100644 --- a/compiler/GHC/Stg/Syntax.hs +++ b/compiler/GHC/Stg/Syntax.hs @@ -68,7 +68,7 @@ module GHC.Stg.Syntax ( import GHC.Prelude -import GHC.Core ( AltCon, StgTickish ) +import GHC.Core ( AltCon ) import GHC.Types.CostCentre ( CostCentreStack ) import Data.ByteString ( ByteString ) import Data.Data ( Data ) @@ -78,6 +78,7 @@ import GHC.Driver.Session import GHC.Types.ForeignCall ( ForeignCall ) import GHC.Types.Id import GHC.Types.Name ( isDynLinkName ) +import GHC.Types.Tickish ( StgTickish ) import GHC.Types.Var.Set import GHC.Types.Literal ( Literal, literalType ) import GHC.Unit.Module ( Module ) |