summaryrefslogtreecommitdiff
path: root/compiler/GHC/Driver/Finder.hs
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-09-22 21:33:28 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-10-01 18:36:11 -0400
commit93d5de165a81dfb335bf1646c2e29956f5ab55ea (patch)
tree6e178737337cad718bd554af8d1304fd0d38d352 /compiler/GHC/Driver/Finder.hs
parentdafe79433c2ca884da3677194ee38913ee30e8dc (diff)
downloadhaskell-93d5de165a81dfb335bf1646c2e29956f5ab55ea.tar.gz
Don't import GHC.Unit to reduce the number of dependencies
Diffstat (limited to 'compiler/GHC/Driver/Finder.hs')
-rw-r--r--compiler/GHC/Driver/Finder.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/Finder.hs b/compiler/GHC/Driver/Finder.hs
index 771d153952..b6cdcdfa76 100644
--- a/compiler/GHC/Driver/Finder.hs
+++ b/compiler/GHC/Driver/Finder.hs
@@ -36,8 +36,11 @@ module GHC.Driver.Finder (
import GHC.Prelude
-import GHC.Unit
+import GHC.Unit.Types
+import GHC.Unit.Module
+import GHC.Unit.Home
import GHC.Unit.State
+
import GHC.Driver.Types
import GHC.Data.FastString
import GHC.Utils.Misc