summaryrefslogtreecommitdiff
path: root/compiler/GHC/Unit/Module
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Unit/Module')
-rw-r--r--compiler/GHC/Unit/Module/Name.hs5
-rw-r--r--compiler/GHC/Unit/Module/Name.hs-boot5
2 files changed, 3 insertions, 7 deletions
diff --git a/compiler/GHC/Unit/Module/Name.hs b/compiler/GHC/Unit/Module/Name.hs
index 9860914502..b7bf62857c 100644
--- a/compiler/GHC/Unit/Module/Name.hs
+++ b/compiler/GHC/Unit/Module/Name.hs
@@ -1,7 +1,8 @@
+{-# OPTIONS_GHC -Wno-orphans #-} -- Outputable and Module Name
-- | The ModuleName type
module GHC.Unit.Module.Name
- ( module Language.Haskell.Syntax
+ ( ModuleName
, pprModuleName
, moduleNameFS
, moduleNameString
@@ -13,7 +14,7 @@ module GHC.Unit.Module.Name
)
where
-import {-# SOURCE #-} Language.Haskell.Syntax (ModuleName(..))
+import {-# SOURCE #-} Language.Haskell.Syntax.ImpExp (ModuleName(..))
import GHC.Prelude
diff --git a/compiler/GHC/Unit/Module/Name.hs-boot b/compiler/GHC/Unit/Module/Name.hs-boot
deleted file mode 100644
index deff51787e..0000000000
--- a/compiler/GHC/Unit/Module/Name.hs-boot
+++ /dev/null
@@ -1,5 +0,0 @@
-module GHC.Unit.Module.Name (
- module Language.Haskell.Syntax
- ) where
-
-import {-# SOURCE #-} Language.Haskell.Syntax (ModuleName(..))