diff options
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/GHCi/UI.hs | 2 | ||||
-rw-r--r-- | ghc/Main.hs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs index ba873d73ed..51fe3d0431 100644 --- a/ghc/GHCi/UI.hs +++ b/ghc/GHCi/UI.hs @@ -58,7 +58,7 @@ import Module import Name import Packages ( trusted, getPackageDetails, getInstalledPackageDetails, listVisibleModuleNames, pprFlag ) -import IfaceSyn ( showToHeader ) +import GHC.Iface.Syntax ( showToHeader ) import PprTyThing import PrelNames import RdrName ( getGRE_NameQualifier_maybes, getRdrName ) diff --git a/ghc/Main.hs b/ghc/Main.hs index b66f567d2f..9f6ab1e132 100644 --- a/ghc/Main.hs +++ b/ghc/Main.hs @@ -23,7 +23,7 @@ import GHC ( -- DynFlags(..), HscTarget(..), import CmdLineParser -- Implementations of the various modes (--show-iface, mkdependHS. etc.) -import LoadIface ( showIface ) +import GHC.Iface.Load ( showIface ) import HscMain ( newHscEnv ) import DriverPipeline ( oneShot, compileFile ) import DriverMkDepend ( doMkDependHS ) @@ -64,7 +64,7 @@ import UniqSupply import MonadUtils ( liftIO ) -- Imports for --abi-hash -import LoadIface ( loadUserInterface ) +import GHC.Iface.Load ( loadUserInterface ) import Module ( mkModuleName ) import Finder ( findImportedModule, cannotFindModule ) import TcRnMonad ( initIfaceCheck ) |