summaryrefslogtreecommitdiff
path: root/compiler/main/GHC.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/main/GHC.hs')
-rw-r--r--compiler/main/GHC.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/main/GHC.hs b/compiler/main/GHC.hs
index 039e8f15ba..d60e6d7f59 100644
--- a/compiler/main/GHC.hs
+++ b/compiler/main/GHC.hs
@@ -264,7 +264,7 @@ import RdrName
import qualified HsSyn -- hack as we want to reexport the whole module
import HsSyn hiding ((<.>))
import Type hiding( typeKind )
-import Coercion ( synTyConResKind )
+import Kind ( synTyConResKind )
import TcType hiding( typeKind )
import Id
import TysPrim ( alphaTyVars )
@@ -881,7 +881,7 @@ compileCore simplify fn = do
gutsToCoreModule (Right mg) = CoreModule {
cm_module = mg_module mg,
cm_types = typeEnvFromEntities (bindersOfBinds (mg_binds mg))
- (mg_tcs mg) (mg_clss mg)
+ (mg_tcs mg)
(mg_fam_insts mg),
cm_binds = mg_binds mg
}