summaryrefslogtreecommitdiff
path: root/longlong.h
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2000-10-02 01:49:14 +0200
committertege <tege@gmplib.org>2000-10-02 01:49:14 +0200
commit84b932f72900d96160a09c03b494d11c13738a65 (patch)
tree970b049f7b049bd056199be2880c1c6fc1c894b7 /longlong.h
parent8eeb4212d4c0f8ad2d1fbcfdad8ca2dbcd74b6f4 (diff)
downloadgmp-84b932f72900d96160a09c03b494d11c13738a65.tar.gz
Use ia64 count_leading_zeros just when __GNUC__.
Diffstat (limited to 'longlong.h')
-rw-r--r--longlong.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/longlong.h b/longlong.h
index 3407e0049..ac2f16c97 100644
--- a/longlong.h
+++ b/longlong.h
@@ -167,7 +167,6 @@ extern UDItype __MPN(udiv_qrnnd) _PROTO ((UDItype, UDItype, UDItype, UDItype *))
: "e" (m0), "e" (m1)); \
(pl) = __m0 * __m1; \
} while (0)
-#endif
#define count_leading_zeros(count, x) \
do { \
UWtype _x = (x), _y, _a, _c; \
@@ -183,6 +182,7 @@ extern UDItype __MPN(udiv_qrnnd) _PROTO ((UDItype, UDItype, UDItype, UDItype *))
(count) = W_TYPE_SIZE - 1 - _c; \
} while (0)
#endif
+#endif
#if defined (__GNUC__) && !defined (NO_ASM)