diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-01-07 02:44:39 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-01-25 05:22:20 -0500 |
commit | 6e2d9ee25bce06ae51d2f1cf8df4f7422106a383 (patch) | |
tree | 4bb0aa9527bc0bed4fb2e991eb02d0f031d514bf /testsuite | |
parent | c3fde723633d1788e4ded8c6f59eb7cef1ae95fd (diff) | |
download | haskell-6e2d9ee25bce06ae51d2f1cf8df4f7422106a383.tar.gz |
Module hierarchy: Cmm (cf #13009)
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/cmm/should_run/HooplPostorder.hs | 8 | ||||
-rw-r--r-- | testsuite/tests/codeGen/should_run/T13825-unit.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/regalloc/regalloc_unit_tests.hs | 12 |
3 files changed, 11 insertions, 11 deletions
diff --git a/testsuite/tests/cmm/should_run/HooplPostorder.hs b/testsuite/tests/cmm/should_run/HooplPostorder.hs index 269efa4021..6171c7edf8 100644 --- a/testsuite/tests/cmm/should_run/HooplPostorder.hs +++ b/testsuite/tests/cmm/should_run/HooplPostorder.hs @@ -2,10 +2,10 @@ {-# LANGUAGE KindSignatures #-} module Main where -import Hoopl.Block -import Hoopl.Collections -import Hoopl.Graph -import Hoopl.Label +import GHC.Cmm.Dataflow.Block +import GHC.Cmm.Dataflow.Collections +import GHC.Cmm.Dataflow.Graph +import GHC.Cmm.Dataflow.Label import Data.Maybe diff --git a/testsuite/tests/codeGen/should_run/T13825-unit.hs b/testsuite/tests/codeGen/should_run/T13825-unit.hs index 24fc463b91..85777bfe72 100644 --- a/testsuite/tests/codeGen/should_run/T13825-unit.hs +++ b/testsuite/tests/codeGen/should_run/T13825-unit.hs @@ -2,7 +2,7 @@ module Main where import DynFlags import GHC.Types.RepType -import SMRep +import GHC.Runtime.Layout import GHC.StgToCmm.Layout import GHC.StgToCmm.Closure import GHC diff --git a/testsuite/tests/regalloc/regalloc_unit_tests.hs b/testsuite/tests/regalloc/regalloc_unit_tests.hs index 5c6d9da624..cbd0361d15 100644 --- a/testsuite/tests/regalloc/regalloc_unit_tests.hs +++ b/testsuite/tests/regalloc/regalloc_unit_tests.hs @@ -26,13 +26,13 @@ import qualified X86.Instr import HscMain import GHC.StgToCmm.CgUtils import AsmCodeGen -import CmmBuildInfoTables -import CmmPipeline -import CmmParse -import CmmInfo -import Cmm +import GHC.Cmm.Info.Build +import GHC.Cmm.Pipeline +import GHC.Cmm.Parser +import GHC.Cmm.Info +import GHC.Cmm import Module -import Debug +import GHC.Cmm.DebugBlock import GHC import GhcMonad import UniqFM |