From 42b180c345a151707d724f931d2b6c7f59a9ee6b Mon Sep 17 00:00:00 2001 From: panne Date: Wed, 17 Sep 2003 08:39:26 +0000 Subject: [PATCH] [project @ 2003-09-17 08:39:26 by panne] Simplified my previous quick-fix-after-some-beers --- ghc/compiler/basicTypes/UniqSupply.lhs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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} -- 1.7.10.4