From: Zack Weinberg Date: Thu, 13 Jan 2000 18:18:10 +0000 (+0000) Subject: longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv' to avoid -Wtraditional... X-Git-Tag: prereleases/libstdc++-2.92~8743 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a0e04e2471da9d09f1936c0dc9f96360df7dc7a;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ab29a6f0a73a..144759a32b63 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-01-13 Zack Weinberg + + * longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv' + to avoid -Wtraditional warning. + 2000-01-13 Kaveh R. Ghazi * 1750a-protos.h: New file. diff --git a/gcc/longlong.h b/gcc/longlong.h index 539174ad910c..f56104614063 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -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; \