diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-13 18:18:10 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-13 18:18:10 +0000 |
commit | 3f966d12ec5eef18dde303225584108c39351c1c (patch) | |
tree | 0dc2986ccb3923a40c1399b5352c511cef8b653c /gcc/longlong.h | |
parent | 4cbc52967cf5c741c972716f34ffcd9f0413b007 (diff) | |
download | gcc-3f966d12ec5eef18dde303225584108c39351c1c.tar.gz |
* longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
to avoid -Wtraditional warning.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31396 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 539174ad910..f5610461406 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; \ |