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/utils | |
parent | be7068a6130f394dcefbcb5d09c2944deca2270d (diff) | |
download | haskell-240f5bf6f53515535be5bf3ef7632aa69ae21e3e.tar.gz |
Modules: Driver (#13009)
submodule updates: nofib, haddock
Diffstat (limited to 'compiler/utils')
-rw-r--r-- | compiler/utils/AsmUtils.hs | 2 | ||||
-rw-r--r-- | compiler/utils/IOEnv.hs | 2 | ||||
-rw-r--r-- | compiler/utils/Outputable.hs | 11 |
3 files changed, 8 insertions, 7 deletions
diff --git a/compiler/utils/AsmUtils.hs b/compiler/utils/AsmUtils.hs index bb19dc2ba3..591b53dc31 100644 --- a/compiler/utils/AsmUtils.hs +++ b/compiler/utils/AsmUtils.hs @@ -1,7 +1,7 @@ -- | Various utilities used in generating assembler. -- -- These are used not only by the native code generator, but also by the --- "DriverPipeline". +-- GHC.Driver.Pipeline module AsmUtils ( sectionType ) where diff --git a/compiler/utils/IOEnv.hs b/compiler/utils/IOEnv.hs index e62a2bcddf..8067123211 100644 --- a/compiler/utils/IOEnv.hs +++ b/compiler/utils/IOEnv.hs @@ -33,7 +33,7 @@ module IOEnv ( import GhcPrelude -import DynFlags +import GHC.Driver.Session import Exception import Module import Panic diff --git a/compiler/utils/Outputable.hs b/compiler/utils/Outputable.hs index ba595757e9..b9e3993cb9 100644 --- a/compiler/utils/Outputable.hs +++ b/compiler/utils/Outputable.hs @@ -94,10 +94,11 @@ module Outputable ( import GhcPrelude -import {-# SOURCE #-} DynFlags( DynFlags, hasPprDebug, hasNoDebugOutput, - targetPlatform, pprUserLength, pprCols, - unsafeGlobalDynFlags, - initSDocContext) +import {-# SOURCE #-} GHC.Driver.Session + ( DynFlags, hasPprDebug, hasNoDebugOutput + , targetPlatform, pprUserLength, pprCols + , unsafeGlobalDynFlags, initSDocContext + ) import {-# SOURCE #-} Module( UnitId, Module, ModuleName, moduleName ) import {-# SOURCE #-} OccName( OccName ) @@ -198,7 +199,7 @@ type QueryQualifyModule = Module -> Bool -- the component id to disambiguate it. type QueryQualifyPackage = UnitId -> Bool --- See Note [Printing original names] in HscTypes +-- See Note [Printing original names] in GHC.Driver.Types data QualifyName -- Given P:M.T = NameUnqual -- It's in scope unqualified as "T" -- OR nothing called "T" is in scope |