[project @ 1997-06-05 09:27:30 by sof]
authorsof <unknown>
Thu, 5 Jun 1997 09:27:30 +0000 (09:27 +0000)
committersof <unknown>
Thu, 5 Jun 1997 09:27:30 +0000 (09:27 +0000)
Do not use loop breaker modules with 2.0x

ghc/compiler/types/PprType.lhs

index 32ed141..6a2f827 100644 (file)
@@ -25,8 +25,12 @@ module PprType(
  ) where
 
 IMP_Ubiq()
+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
 IMPORT_DELOOPER(IdLoop)
---IMPORT_DELOOPER(TyLoop)      -- for paranoia checking
+#else
+import {-# SOURCE #-} Id
+#endif
+
 
 -- friends:
 -- (PprType can see all the representations it's trying to print)