From: simonpj Date: Wed, 26 Sep 2001 16:27:04 +0000 (+0000) Subject: [project @ 2001-09-26 16:27:04 by simonpj] X-Git-Tag: Approximately_9120_patches~902 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=575853e3086ba407f865316946109750ee3dc790;p=ghc-hetmet.git [project @ 2001-09-26 16:27:04 by simonpj] Wibble --- diff --git a/ghc/lib/std/PrelReal.lhs b/ghc/lib/std/PrelReal.lhs index 9114b54..cd2c1c0 100644 --- a/ghc/lib/std/PrelReal.lhs +++ b/ghc/lib/std/PrelReal.lhs @@ -1,5 +1,5 @@ % ------------------------------------------------------------------------------ -% $Id: PrelReal.lhs,v 1.15 2001/09/26 16:22:04 simonpj Exp $ +% $Id: PrelReal.lhs,v 1.16 2001/09/26 16:27:04 simonpj Exp $ % % (c) The University of Glasgow, 1994-2000 % @@ -62,7 +62,7 @@ their greatest common divisor. \begin{code} reduce :: (Integral a) => a -> a -> Ratio a -{#- SPECIALISE reduce :: Integer -> Integer -> Rational #-} +{-# SPECIALISE reduce :: Integer -> Integer -> Rational #-} reduce _ 0 = error "Ratio.%: zero denominator" reduce x y = (x `quot` d) :% (y `quot` d) where d = gcd x y