[commit: ghc] wip/T9858-typeable-ben2: IntWord64: Fix import (f310fa9)
git at git.haskell.org
git at git.haskell.org
Tue Sep 22 21:57:53 UTC 2015
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T9858-typeable-ben2
Link : http://ghc.haskell.org/trac/ghc/changeset/f310fa92ad1cb184b9aec12d546ea94e4850b919/ghc
>---------------------------------------------------------------
commit f310fa92ad1cb184b9aec12d546ea94e4850b919
Author: Ben Gamari <ben at smart-cactus.org>
Date: Tue Sep 22 23:59:04 2015 +0200
IntWord64: Fix import
>---------------------------------------------------------------
f310fa92ad1cb184b9aec12d546ea94e4850b919
libraries/ghc-prim/GHC/IntWord64.hs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libraries/ghc-prim/GHC/IntWord64.hs b/libraries/ghc-prim/GHC/IntWord64.hs
index 94f74aa..7a3d72c 100644
--- a/libraries/ghc-prim/GHC/IntWord64.hs
+++ b/libraries/ghc-prim/GHC/IntWord64.hs
@@ -23,10 +23,11 @@ module GHC.IntWord64 (
#endif
) where
-import GHC.Types
#if WORD_SIZE_IN_BITS < 64
+import GHC.Prim
+
foreign import ccall unsafe "hs_eqWord64" eqWord64# :: Word64# -> Word64# -> Int#
foreign import ccall unsafe "hs_neWord64" neWord64# :: Word64# -> Word64# -> Int#
foreign import ccall unsafe "hs_ltWord64" ltWord64# :: Word64# -> Word64# -> Int#
More information about the ghc-commits
mailing list