longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv' to avoid -Wtraditional warning.

* longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
	to avoid -Wtraditional warning.

From-SVN: r31396
This commit is contained in:
Zack Weinberg 2000-01-13 18:18:10 +00:00 committed by Zack Weinberg
parent 357100a3ef
commit 2a0e04e247
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-01-13 Zack Weinberg <zack@wolery.cumb.org>
* longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
to avoid -Wtraditional warning.
2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* 1750a-protos.h: New file.

View File

@ -442,13 +442,13 @@ UDItype __umulsidi3 (USItype, USItype);
"=d" ((USItype) (w1)) \
: "%0" ((USItype) (u)), \
"rm" ((USItype) (v)))
#define udiv_qrnnd(q, r, n1, n0, d) \
#define udiv_qrnnd(q, r, n1, n0, dv) \
__asm__ ("divl %4" \
: "=a" ((USItype) (q)), \
"=d" ((USItype) (r)) \
: "0" ((USItype) (n0)), \
"1" ((USItype) (n1)), \
"rm" ((USItype) (d)))
"rm" ((USItype) (dv)))
#define count_leading_zeros(count, x) \
do { \
USItype __cbtmp; \