From: panne Date: Wed, 17 Sep 2003 08:39:26 +0000 (+0000) Subject: [project @ 2003-09-17 08:39:26 by panne] X-Git-Tag: Approx_11550_changesets_converted~445 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=42b180c345a151707d724f931d2b6c7f59a9ee6b;p=ghc-hetmet.git [project @ 2003-09-17 08:39:26 by panne] Simplified my previous quick-fix-after-some-beers --- diff --git a/ghc/compiler/basicTypes/UniqSupply.lhs b/ghc/compiler/basicTypes/UniqSupply.lhs index 2b29335..73b2b63 100644 --- a/ghc/compiler/basicTypes/UniqSupply.lhs +++ b/ghc/compiler/basicTypes/UniqSupply.lhs @@ -79,18 +79,12 @@ mkSplitUniqSupply (C# c#) return (MkSplitUniqSupply uniq s1 s2) ) - mk_unique = -#if __GLASGOW_HASKELL__ < 603 - _ccall_ -#endif - genSymZh >>= \ (W# u#) -> + mk_unique = genSymZh >>= \ (W# u#) -> return (I# (w2i (mask# `or#` u#))) in mk_supply# -#if __GLASGOW_HASKELL__ >= 603 -foreign import ccall unsafe "genSymZh" genSymZh :: IO Word -#endif +foreign import ccall "genSymZh" unsafe genSymZh :: IO Word splitUniqSupply (MkSplitUniqSupply _ s1 s2) = (s1, s2) \end{code}