diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/longlong.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ab29a6f..144759a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/longlong.h b/gcc/longlong.h index 539174a..f561046 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; \ |