summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsof <unknown>1997-07-26 09:50:31 +0000
committersof <unknown>1997-07-26 09:50:31 +0000
commit83e6048ff3de02c5fd59e00ba6426e956ffb7f94 (patch)
tree29b65dc43b5451684351689bac7754b1d748cde3
parent210fd453d7156e676023922d41a402a951df5353 (diff)
downloadhaskell-83e6048ff3de02c5fd59e00ba6426e956ffb7f94.tar.gz
[project @ 1997-07-26 09:49:29 by sof]
imports changed
-rw-r--r--ghc/compiler/codeGen/ClosureInfo.lhs4
-rw-r--r--ghc/compiler/typecheck/TcInstDcls.lhs4
2 files changed, 5 insertions, 3 deletions
diff --git a/ghc/compiler/codeGen/ClosureInfo.lhs b/ghc/compiler/codeGen/ClosureInfo.lhs
index 30b0462669..7bade99388 100644
--- a/ghc/compiler/codeGen/ClosureInfo.lhs
+++ b/ghc/compiler/codeGen/ClosureInfo.lhs
@@ -56,7 +56,9 @@ IMP_Ubiq(){-uitous-}
IMPORT_DELOOPER(AbsCLoop) -- here for paranoia-checking
#endif
-import AbsCSyn
+import AbsCSyn ( MagicId, node, mkLiveRegsMask,
+ {- GHC 0.29 only -} AbstractC, CAddrMode
+ )
import StgSyn
import CgMonad
diff --git a/ghc/compiler/typecheck/TcInstDcls.lhs b/ghc/compiler/typecheck/TcInstDcls.lhs
index 59d628416b..1dd90a3779 100644
--- a/ghc/compiler/typecheck/TcInstDcls.lhs
+++ b/ghc/compiler/typecheck/TcInstDcls.lhs
@@ -29,7 +29,7 @@ import RnHsSyn ( SYN_IE(RenamedHsBinds), SYN_IE(RenamedMonoBinds),
SYN_IE(RenamedInstDecl), SYN_IE(RenamedFixityDecl), SYN_IE(RenamedHsExpr),
SYN_IE(RenamedSig), SYN_IE(RenamedSpecInstSig), SYN_IE(RenamedHsDecl)
)
-import TcHsSyn ( TcIdOcc(..), SYN_IE(TcIdBndr), SYN_IE(TcHsBinds),
+import TcHsSyn ( SYN_IE(TcHsBinds),
SYN_IE(TcMonoBinds), SYN_IE(TcExpr), tcIdType,
mkHsTyLam, mkHsTyApp,
mkHsDictLam, mkHsDictApp )
@@ -51,7 +51,7 @@ import TcKind ( TcKind, unifyKind )
import TcMatches ( tcMatchesFun )
import TcMonoType ( tcTyVarScope, tcContext, tcHsTypeKind )
import TcSimplify ( tcSimplifyAndCheck )
-import TcType ( SYN_IE(TcType), SYN_IE(TcTyVar), SYN_IE(TcTyVarSet),
+import TcType ( TcIdOcc(..), SYN_IE(TcIdBndr), SYN_IE(TcType), SYN_IE(TcTyVar), SYN_IE(TcTyVarSet),
tcInstSigTyVars, tcInstType, tcInstSigTcType,
tcInstTheta, tcInstTcType, tcInstSigType
)