summaryrefslogtreecommitdiff
path: root/compiler/GHC/Plugins.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Plugins.hs')
-rw-r--r--compiler/GHC/Plugins.hs20
1 files changed, 10 insertions, 10 deletions
diff --git a/compiler/GHC/Plugins.hs b/compiler/GHC/Plugins.hs
index 8ba1c5fb2d..c51ac4c053 100644
--- a/compiler/GHC/Plugins.hs
+++ b/compiler/GHC/Plugins.hs
@@ -41,13 +41,13 @@ module GHC.Plugins
, module GHC.Types.Unique
, module GHC.Types.Unique.Set
, module GHC.Types.Unique.FM
- , module FiniteMap
- , module Util
+ , module GHC.Data.FiniteMap
+ , module GHC.Utils.Misc
, module GHC.Serialized
, module GHC.Types.SrcLoc
- , module Outputable
+ , module GHC.Utils.Outputable
, module GHC.Types.Unique.Supply
- , module FastString
+ , module GHC.Data.FastString
, -- * Getting 'Name's
thNameToGhcName
)
@@ -103,21 +103,21 @@ import GHC.Types.Unique.Set
import GHC.Types.Unique.FM
-- Conflicts with UniqFM:
--import LazyUniqFM
-import FiniteMap
+import GHC.Data.FiniteMap
-- Common utilities
-import Util
+import GHC.Utils.Misc
import GHC.Serialized
import GHC.Types.SrcLoc
-import Outputable
+import GHC.Utils.Outputable
import GHC.Types.Unique.Supply
import GHC.Types.Unique ( Unique, Uniquable(..) )
-import FastString
+import GHC.Data.FastString
import Data.Maybe
import GHC.Iface.Env ( lookupOrigIO )
-import GhcPrelude
-import MonadUtils ( mapMaybeM )
+import GHC.Prelude
+import GHC.Utils.Monad ( mapMaybeM )
import GHC.ThToHs ( thRdrNameGuesses )
import GHC.Tc.Utils.Env ( lookupGlobal )