From 9117741243f75f5041ce6650ccd29aaada88442b Mon Sep 17 00:00:00 2001 From: sof Date: Thu, 5 Jun 1997 19:51:27 +0000 Subject: [PATCH] [project @ 1997-06-05 19:51:27 by sof] Do not use loop breaker modules with 2.0x --- ghc/compiler/typecheck/TcEnv.lhs | 4 ++++ 1 file changed, 4 insertions(+) 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 ) -- 1.7.10.4