diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2010-05-05 22:48:22 +0200 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2010-05-05 22:48:22 +0200 |
commit | d36a714e3fedbf7273d711c308db37c34b4199d5 (patch) | |
tree | 727e79d83eb8cabd4f4e03b5fa3517f5fdc8ed4e /longlong.h | |
parent | 52606f22b4da06b4aa495dcfec513fbd7c0313f8 (diff) | |
download | gmp-d36a714e3fedbf7273d711c308db37c34b4199d5.tar.gz |
Undo 2009-03-01 change.
Diffstat (limited to 'longlong.h')
-rw-r--r-- | longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/longlong.h b/longlong.h index 130dc8512..35db97094 100644 --- a/longlong.h +++ b/longlong.h @@ -1271,7 +1271,7 @@ extern UWtype __MPN(udiv_qrnnd) _PROTO ((UWtype *, UWtype, UWtype, UWtype)); #define count_leading_zeros(count, x) \ __asm__ ("cntlzd %0,%1" : "=r" (count) : "r" (x)) #define COUNT_LEADING_ZEROS_0 64 -#if __GMP_GNUC_PREREQ (4,4) +#if 0 && __GMP_GNUC_PREREQ (4,4) /* Disable, this results in libcalls! */ #define umul_ppmm(w1, w0, u, v) \ do { \ typedef unsigned int __ll_UTItype __attribute__((mode(TI))); \ |