Fix build on 64bit machines
authorIan Lynagh <igloo@earth.li>
Fri, 22 Apr 2011 17:42:23 +0000 (18:42 +0100)
committerIan Lynagh <igloo@earth.li>
Fri, 22 Apr 2011 17:42:23 +0000 (18:42 +0100)
GHC/Float/ConversionUtils.hs

index 29c3ae5..83dbe74 100644 (file)
@@ -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 ()