diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-24 20:59:43 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-26 15:10:58 -0500 |
commit | 817f93eac4d13f680e8e3e7a25eb403b1864f82e (patch) | |
tree | f7014721e49627f15d76f44a5bf663043e35fafc /compiler/GHC/Plugins.hs | |
parent | b2b49a0aad353201678970c76d8305a5dcb1bfab (diff) | |
download | haskell-817f93eac4d13f680e8e3e7a25eb403b1864f82e.tar.gz |
Modules: Core (#13009)
Update haddock submodule
Diffstat (limited to 'compiler/GHC/Plugins.hs')
-rw-r--r-- | compiler/GHC/Plugins.hs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/compiler/GHC/Plugins.hs b/compiler/GHC/Plugins.hs index 6b3115bbcc..3de7a1b045 100644 --- a/compiler/GHC/Plugins.hs +++ b/compiler/GHC/Plugins.hs @@ -6,13 +6,13 @@ -- with saying "import GHC.Plugins". -- -- Particularly interesting modules for plugin writers include --- "CoreSyn" and "CoreMonad". +-- "GHC.Core" and "CoreMonad". module GHC.Plugins( module GHC.Driver.Plugins, module RdrName, module OccName, module Name, module Var, module Id, module IdInfo, - module CoreMonad, module CoreSyn, module Literal, module DataCon, - module CoreUtils, module MkCore, module CoreFVs, module CoreSubst, - module Rules, module Annotations, + module CoreMonad, module GHC.Core, module Literal, module DataCon, + module GHC.Core.Utils, module GHC.Core.Make, module GHC.Core.FVs, + module GHC.Core.Subst, module GHC.Core.Rules, module Annotations, module GHC.Driver.Session, module GHC.Driver.Packages, module Module, module Type, module TyCon, module Coercion, module TysWiredIn, module GHC.Driver.Types, module BasicTypes, @@ -38,17 +38,17 @@ import IdInfo -- Core import CoreMonad -import CoreSyn +import GHC.Core import Literal import DataCon -import CoreUtils -import MkCore -import CoreFVs -import CoreSubst hiding( substTyVarBndr, substCoVarBndr, extendCvSubst ) +import GHC.Core.Utils +import GHC.Core.Make +import GHC.Core.FVs +import GHC.Core.Subst hiding( substTyVarBndr, substCoVarBndr, extendCvSubst ) -- These names are also exported by Type -- Core "extras" -import Rules +import GHC.Core.Rules import Annotations -- Pipeline-related stuff @@ -57,9 +57,9 @@ import GHC.Driver.Packages -- Important GHC types import Module -import Type hiding {- conflict with CoreSubst -} +import Type hiding {- conflict with GHC.Core.Subst -} ( substTy, extendTvSubst, extendTvSubstList, isInScope ) -import Coercion hiding {- conflict with CoreSubst -} +import Coercion hiding {- conflict with GHC.Core.Subst -} ( substCo ) import TyCon import TysWiredIn |