From: simonm Date: Wed, 15 Apr 1998 08:57:21 +0000 (+0000) Subject: [project @ 1998-04-15 08:57:21 by simonm] X-Git-Tag: Approx_2487_patches~798 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1d7de903e709a4ae4f274098e8fcfb9d1a78d0be;p=ghc-hetmet.git [project @ 1998-04-15 08:57:21 by simonm] - comment out specialize pragmas for the time being. They seem to be somewhat out of date. --- diff --git a/ghc/compiler/utils/UniqFM.lhs b/ghc/compiler/utils/UniqFM.lhs index 03c5add..094c26f 100644 --- a/ghc/compiler/utils/UniqFM.lhs +++ b/ghc/compiler/utils/UniqFM.lhs @@ -129,7 +129,9 @@ ufmToList :: UniqFM elt -> [(Unique, elt)] %************************************************************************ \begin{code} -#ifdef __GLASGOW_HASKELL__ +-- Turn off for now, these need to be updated (SDM 4/98) + +{- #ifdef __GLASGOW_HASKELL__ -} -- I don't think HBC was too happy about this (WDP 94/10) {-# SPECIALIZE @@ -149,7 +151,7 @@ ufmToList :: UniqFM elt -> [(Unique, elt)] , UniqFM elt -> Unique -> Maybe elt #-} -#endif {- __GLASGOW_HASKELL__ -} +{- #endif {- __GLASGOW_HASKELL__ -} -} \end{code} %************************************************************************