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

ghc/compiler/utils/UniqSet.lhs

index 3dc014e..8772f2c 100644 (file)
@@ -20,7 +20,11 @@ module UniqSet (
        isEmptyUniqSet, filterUniqSet, sizeUniqSet
     ) where
 
+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
 IMPORT_DELOOPER( SpecLoop )
+#else
+import {-# SOURCE #-} Name
+#endif
 
 import Maybes          ( maybeToBool )
 import UniqFM