diff options
author | adam <adam@pkgsrc.org> | 2004-08-18 12:41:32 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-08-18 12:41:32 +0000 |
commit | a90efb8f559ee7b559e889e65673aa1546668ab8 (patch) | |
tree | eb269860dfcabafad6bab4880f67b4ab58cee575 /devel/gmp/patches | |
parent | 52c9f7b0d30d0ac33220185edc6106683f7b894a (diff) | |
download | pkgsrc-a90efb8f559ee7b559e889e65673aa1546668ab8.tar.gz |
Changes 4.1.3:
* Bug fixes.
* mpz_export allows NULL for countp parameter.
Diffstat (limited to 'devel/gmp/patches')
-rw-r--r-- | devel/gmp/patches/patch-aa | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/devel/gmp/patches/patch-aa b/devel/gmp/patches/patch-aa index 86ec18f9359..8ae20599425 100644 --- a/devel/gmp/patches/patch-aa +++ b/devel/gmp/patches/patch-aa @@ -1,15 +1,15 @@ -$NetBSD: patch-aa,v 1.9 2004/02/26 17:09:08 drochner Exp $ +$NetBSD: patch-aa,v 1.10 2004/08/18 12:41:32 adam Exp $ ---- longlong.h.orig 2004-02-26 17:07:18.000000000 +0100 -+++ longlong.h 2004-02-26 17:49:56.000000000 +0100 -@@ -715,8 +715,10 @@ - } while (0) +--- longlong.h.orig 2004-08-18 14:29:33.000000000 +0000 ++++ longlong.h +@@ -738,8 +738,10 @@ extern UWtype __MPN(udiv_qrnnd) _PROTO ( + count is only an int. */ #define count_trailing_zeros(count, x) \ do { \ + UDItype __cbtmp; \ ASSERT ((x) != 0); \ -- __asm__ ("bsfq %1,%0" : "=r" (count) : "rm" ((UDItype)(x))); \ -+ __asm__ ("bsfq %1,%0" : "=r" (__cbtmp) : "rm" ((UDItype)(x))); \ +- __asm__ ("bsfq %1,%q0" : "=r" (count) : "rm" ((UDItype)(x))); \ ++ __asm__ ("bsfq %1,%q0" : "=r" (__cbtmp) : "rm" ((UDItype)(x))); \ + (count) = __cbtmp; \ } while (0) #endif /* x86_64 */ |