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

ghc/compiler/utils/UniqFM.lhs

index 2967032..1cd56ff 100644 (file)
@@ -54,10 +54,15 @@ module UniqFM (
 #endif
     ) where
 
+IMP_Ubiq()
+
 #if defined(COMPILING_GHC)
+# if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
 IMPORT_DELOOPER( SpecLoop )
+# else
+import {-# SOURCE #-} Name
+# endif
 #endif
-IMP_Ubiq()
 
 import Unique          ( Unique, u2i, mkUniqueGrimily )
 import Util