From 71ca4a9ae115a3d5d8e5d4892af837c415b217b6 Mon Sep 17 00:00:00 2001 From: sof Date: Thu, 5 Jun 1997 08:48:22 +0000 Subject: [PATCH] [project @ 1997-06-05 08:48:22 by sof] Do not use loop breaker dummy modules with 2.0x --- ghc/compiler/utils/UniqSet.lhs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc/compiler/utils/UniqSet.lhs b/ghc/compiler/utils/UniqSet.lhs index 3dc014e..8772f2c 100644 --- a/ghc/compiler/utils/UniqSet.lhs +++ b/ghc/compiler/utils/UniqSet.lhs @@ -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 -- 1.7.10.4