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 <[email protected]>
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;                                                         \
                                                                         \



_______________________________________________
Cvs-libraries mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-libraries

Reply via email to