[commit: integer-gmp] master: Fix compilation under LLVM backend. (#5965) (121cd52)
David Terei
davidterei at gmail.com
Wed Mar 28 21:30:00 CEST 2012
Repository : ssh://darcs.haskell.org//srv/darcs/packages/integer-gmp
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/121cd52f9ae00ff0d6d072cc51939fb887db3fba
>---------------------------------------------------------------
commit 121cd52f9ae00ff0d6d072cc51939fb887db3fba
Author: David Terei <davidterei at gmail.com>
Date: Wed Mar 28 11:22:21 2012 -0700
Fix compilation under LLVM backend. (#5965)
Recent change means ul is truncate to an int, not a long anymore.
>---------------------------------------------------------------
cbits/gmp-wrappers.cmm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cbits/gmp-wrappers.cmm b/cbits/gmp-wrappers.cmm
index 002aa04..43df337 100644
--- a/cbits/gmp-wrappers.cmm
+++ b/cbits/gmp-wrappers.cmm
@@ -269,7 +269,7 @@ name \
{ \
CInt s1; \
W_ d1; \
- CLong ul; \
+ CInt ul; \
W_ mp_tmp; \
W_ mp_result; \
\
More information about the Cvs-libraries
mailing list