From 7b7fc46fd296030068c6682b37c028656fdf4a55 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 22 Apr 2011 18:42:23 +0100 Subject: [PATCH] Fix build on 64bit machines --- GHC/Float/ConversionUtils.hs | 2 ++ 1 file changed, 2 insertions(+) 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 () -- 1.7.10.4