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:
parent
357100a3ef
commit
2a0e04e247
@ -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.
|
||||
|
@ -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; \
|
||||
|
Loading…
Reference in New Issue
Block a user