From 9d563f79ddff25653d97a4dc165a6774dbb76fcb Mon Sep 17 00:00:00 2001 From: sof Date: Thu, 5 Jun 1997 21:03:17 +0000 Subject: [PATCH] [project @ 1997-06-05 21:03:17 by sof] import updates --- ghc/compiler/deSugar/DsUtils.lhs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc/compiler/deSugar/DsUtils.lhs b/ghc/compiler/deSugar/DsUtils.lhs index 8a508a5..9408c60 100644 --- a/ghc/compiler/deSugar/DsUtils.lhs +++ b/ghc/compiler/deSugar/DsUtils.lhs @@ -29,7 +29,11 @@ module DsUtils ( ) where IMP_Ubiq() +#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201 IMPORT_DELOOPER(DsLoop) ( match, matchSimply ) +#else +import {-# SOURCE #-} Match (match, matchSimply ) +#endif import HsSyn ( HsExpr(..), OutPat(..), HsLit(..), Fixity, Match, HsBinds, Stmt, DoOrListComp, HsType, ArithSeqInfo ) -- 1.7.10.4