summaryrefslogtreecommitdiff
path: root/longlong.h
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2000-10-20 20:46:16 +0200
committertege <tege@gmplib.org>2000-10-20 20:46:16 +0200
commitaefd1b316691892b13b45b896ef1709b475d9258 (patch)
tree0a37fc8672b553b4ad8ae34495179d029e13eaf7 /longlong.h
parent479429832d0fde624b19d7c3822943dd17162eea (diff)
downloadgmp-aefd1b316691892b13b45b896ef1709b475d9258.tar.gz
(udiv_qrnnd): Fix typo in last change.
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 0d0a44f78..86035ad0f 100644
--- a/longlong.h
+++ b/longlong.h
@@ -454,7 +454,7 @@ extern USItype __MPN(udiv_qrnnd) _PROTO ((USItype *, USItype, USItype, USItype))
: "=a" (w0), "=d" (w1) \
: "%0" ((USItype)(u)), "rm" ((USItype)(v)))
#define udiv_qrnnd(q, r, n1, n0, dx) /* d renamed to dx avoiding */ \
- __asm__ ("divl %4" stringification in K&R C \
+ __asm__ ("divl %4" /* stringification in K&R C */ \
: "=a" (q), "=d" (r) \
: "0" ((USItype)(n0)), "1" ((USItype)(n1)), "rm" ((USItype)(dx)))
#define count_leading_zeros(count, x) \