summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Float
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-04-22 18:42:23 +0100
committerIan Lynagh <igloo@earth.li>2011-04-22 18:42:23 +0100
commitbea20c00a49dfa62d3a598bc991af08cc5baf3bf (patch)
tree7edd10f520e695a195ac0c454677bd10466c84a3 /libraries/base/GHC/Float
parent3812286f8f85b5d926f0fda1f9997abdd9f66ad2 (diff)
downloadhaskell-bea20c00a49dfa62d3a598bc991af08cc5baf3bf.tar.gz
Fix build on 64bit machines
Diffstat (limited to 'libraries/base/GHC/Float')
-rw-r--r--libraries/base/GHC/Float/ConversionUtils.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/GHC/Float/ConversionUtils.hs b/libraries/base/GHC/Float/ConversionUtils.hs
index 29c3ae5137..83dbe74d46 100644
--- a/libraries/base/GHC/Float/ConversionUtils.hs
+++ b/libraries/base/GHC/Float/ConversionUtils.hs
@@ -22,7 +22,9 @@ module GHC.Float.ConversionUtils ( elimZerosInteger, elimZerosInt# ) where
import GHC.Base
import GHC.Integer
+#if WORD_SIZE_IN_BITS < 64
import GHC.IntWord64
+#endif
default ()