summaryrefslogtreecommitdiff
path: root/libraries/integer-simple
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2011-10-14 10:01:06 +0100
committerSimon Marlow <marlowsd@gmail.com>2011-10-14 10:01:06 +0100
commite84f5b11c52f7ca692e1f8bd98fdc0585799179c (patch)
treeea352ec5499364e754cee02e4d8b4541f93b4c21 /libraries/integer-simple
parent5a195cc77d81dcd338f6db87fdd8dd835e50a9be (diff)
downloadhaskell-e84f5b11c52f7ca692e1f8bd98fdc0585799179c.tar.gz
remove erroneous '::' in NOINLINE pragma
Diffstat (limited to 'libraries/integer-simple')
-rw-r--r--libraries/integer-simple/GHC/Integer/Type.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/integer-simple/GHC/Integer/Type.hs b/libraries/integer-simple/GHC/Integer/Type.hs
index 02eeef24bd..c3d812c1fe 100644
--- a/libraries/integer-simple/GHC/Integer/Type.hs
+++ b/libraries/integer-simple/GHC/Integer/Type.hs
@@ -97,7 +97,7 @@ integerToInt i = word2Int# (integerToWord i)
integerToWord64 :: Integer -> Word64#
integerToWord64 i = int64ToWord64# (integerToInt64 i)
-{-# NOINLINE word64ToInteger:: #-}
+{-# NOINLINE word64ToInteger #-}
word64ToInteger:: Word64# -> Integer
word64ToInteger w = if w `eqWord64#` wordToWord64# 0##
then Naught