From: sof Date: Thu, 5 Jun 1997 19:51:27 +0000 (+0000) Subject: [project @ 1997-06-05 19:51:27 by sof] X-Git-Tag: Approximately_1000_patches_recorded~416 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=9117741243f75f5041ce6650ccd29aaada88442b;p=ghc-hetmet.git [project @ 1997-06-05 19:51:27 by sof] Do not use loop breaker modules with 2.0x --- diff --git a/ghc/compiler/typecheck/TcEnv.lhs b/ghc/compiler/typecheck/TcEnv.lhs index 7ec765d..3327ece 100644 --- a/ghc/compiler/typecheck/TcEnv.lhs +++ b/ghc/compiler/typecheck/TcEnv.lhs @@ -24,7 +24,11 @@ module TcEnv( IMP_Ubiq() +#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201 IMPORT_DELOOPER(TcMLoop) -- for paranoia checking +#else +import {-# SOURCE #-} TcType +#endif import HsTypes ( HsTyVar(..) ) import Id ( SYN_IE(Id), GenId, idType, mkUserLocal, mkUserId, replaceIdInfo, getIdInfo )