Commit 2a0e04e2 by Zack Weinberg Committed by Zack Weinberg

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
parent 357100a3
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> 2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* 1750a-protos.h: New file. * 1750a-protos.h: New file.
......
...@@ -442,13 +442,13 @@ UDItype __umulsidi3 (USItype, USItype); ...@@ -442,13 +442,13 @@ UDItype __umulsidi3 (USItype, USItype);
"=d" ((USItype) (w1)) \ "=d" ((USItype) (w1)) \
: "%0" ((USItype) (u)), \ : "%0" ((USItype) (u)), \
"rm" ((USItype) (v))) "rm" ((USItype) (v)))
#define udiv_qrnnd(q, r, n1, n0, d) \ #define udiv_qrnnd(q, r, n1, n0, dv) \
__asm__ ("divl %4" \ __asm__ ("divl %4" \
: "=a" ((USItype) (q)), \ : "=a" ((USItype) (q)), \
"=d" ((USItype) (r)) \ "=d" ((USItype) (r)) \
: "0" ((USItype) (n0)), \ : "0" ((USItype) (n0)), \
"1" ((USItype) (n1)), \ "1" ((USItype) (n1)), \
"rm" ((USItype) (d))) "rm" ((USItype) (dv)))
#define count_leading_zeros(count, x) \ #define count_leading_zeros(count, x) \
do { \ do { \
USItype __cbtmp; \ USItype __cbtmp; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment