From: Ian Lynagh Date: Fri, 22 Apr 2011 17:42:23 +0000 (+0100) Subject: Fix build on 64bit machines X-Git-Url: http://git.megacz.com/?p=ghc-base.git;a=commitdiff_plain;h=7b7fc46fd296030068c6682b37c028656fdf4a55 Fix build on 64bit machines --- diff --git a/GHC/Float/ConversionUtils.hs b/GHC/Float/ConversionUtils.hs index 29c3ae5..83dbe74 100644 --- a/GHC/Float/ConversionUtils.hs +++ b/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 ()