diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-18 11:08:48 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-21 20:46:40 -0500 |
commit | 240f5bf6f53515535be5bf3ef7632aa69ae21e3e (patch) | |
tree | dc7be78ca126c66af0aeb9f7944ebfc0ac5a211c /compiler/GHC/Runtime/Loader.hs | |
parent | be7068a6130f394dcefbcb5d09c2944deca2270d (diff) | |
download | haskell-240f5bf6f53515535be5bf3ef7632aa69ae21e3e.tar.gz |
Modules: Driver (#13009)
submodule updates: nofib, haddock
Diffstat (limited to 'compiler/GHC/Runtime/Loader.hs')
-rw-r--r-- | compiler/GHC/Runtime/Loader.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/GHC/Runtime/Loader.hs b/compiler/GHC/Runtime/Loader.hs index 0156b16044..15d0b7d5dc 100644 --- a/compiler/GHC/Runtime/Loader.hs +++ b/compiler/GHC/Runtime/Loader.hs @@ -21,12 +21,12 @@ module GHC.Runtime.Loader ( ) where import GhcPrelude -import DynFlags +import GHC.Driver.Session import GHC.Runtime.Linker ( linkModule, getHValue ) import GHC.Runtime.Interpreter ( wormhole ) import SrcLoc ( noSrcSpan ) -import Finder ( findPluginModule, cannotFindModule ) +import GHC.Driver.Finder ( findPluginModule, cannotFindModule ) import TcRnMonad ( initTcInteractive, initIfaceTcRn ) import GHC.Iface.Load ( loadPluginInterface ) import RdrName ( RdrName, ImportSpec(..), ImpDeclSpec(..) @@ -34,10 +34,10 @@ import RdrName ( RdrName, ImportSpec(..), ImpDeclSpec(..) , gre_name, mkRdrQual ) import OccName ( OccName, mkVarOcc ) import GHC.Rename.Names ( gresFromAvails ) -import Plugins +import GHC.Driver.Plugins import PrelNames ( pluginTyConName, frontendPluginTyConName ) -import HscTypes +import GHC.Driver.Types import GHCi.RemoteTypes ( HValue ) import Type ( Type, eqType, mkTyConTy ) import TyCoPpr ( pprTyThingCategory ) @@ -50,7 +50,7 @@ import FastString import ErrUtils import Outputable import Exception -import Hooks +import GHC.Driver.Hooks import Control.Monad ( when, unless ) import Data.Maybe ( mapMaybe ) |