From: simonpj@microsoft.com Date: Wed, 27 Oct 2010 19:39:31 +0000 (+0000) Subject: Add an INLINE pragma on fromInteger on Int X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=d6879efffb00546c8009d96612306a34a919852c Add an INLINE pragma on fromInteger on Int --- diff --git a/GHC/Num.lhs b/GHC/Num.lhs index e16a350..5a94949 100644 --- a/GHC/Num.lhs +++ b/GHC/Num.lhs @@ -111,6 +111,7 @@ instance Num Int where | n `eqInt` 0 = 0 | otherwise = 1 + {-# INLINE fromInteger #-} -- Just to be sure! fromInteger i = I# (toInt# i) quotRemInt :: Int -> Int -> (Int, Int)