diff options
Diffstat (limited to 'compiler/GHC/Plugins.hs')
-rw-r--r-- | compiler/GHC/Plugins.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/GHC/Plugins.hs b/compiler/GHC/Plugins.hs index 448b184f39..ce9d019a70 100644 --- a/compiler/GHC/Plugins.hs +++ b/compiler/GHC/Plugins.hs @@ -6,7 +6,7 @@ -- with saying "import GHC.Plugins". -- -- Particularly interesting modules for plugin writers include --- "GHC.Core" and "GHC.Core.Op.Monad". +-- "GHC.Core" and "GHC.Core.Opt.Monad". module GHC.Plugins ( module GHC.Driver.Plugins , module GHC.Types.Name.Reader @@ -15,7 +15,7 @@ module GHC.Plugins , module GHC.Types.Var , module GHC.Types.Id , module GHC.Types.Id.Info - , module GHC.Core.Op.Monad + , module GHC.Core.Opt.Monad , module GHC.Core , module GHC.Types.Literal , module GHC.Core.DataCon @@ -65,7 +65,7 @@ import GHC.Types.Id hiding ( lazySetIdInfo, setIdExported, setIdNotExport import GHC.Types.Id.Info -- Core -import GHC.Core.Op.Monad +import GHC.Core.Opt.Monad import GHC.Core import GHC.Types.Literal import GHC.Core.DataCon @@ -123,8 +123,8 @@ import GHC.Tc.Utils.Env ( lookupGlobal ) import qualified Language.Haskell.TH as TH -{- This instance is defined outside GHC.Core.Op.Monad.hs so that - GHC.Core.Op.Monad does not depend on GHC.Tc.Utils.Env -} +{- This instance is defined outside GHC.Core.Opt.Monad.hs so that + GHC.Core.Opt.Monad does not depend on GHC.Tc.Utils.Env -} instance MonadThings CoreM where lookupThing name = do { hsc_env <- getHscEnv ; liftIO $ lookupGlobal hsc_env name } |