aboutsummaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authorZack Weinberg <zack@wolery.cumb.org>2000-01-13 18:18:10 +0000
committerZack Weinberg <zack@gcc.gnu.org>2000-01-13 18:18:10 +0000
commit2a0e04e2471da9d09f1936c0dc9f96360df7dc7a (patch)
tree0dc2986ccb3923a40c1399b5352c511cef8b653c /gcc/longlong.h
parent357100a3ef6fd07188328be06fcc24156182affc (diff)
downloadgcc-2a0e04e2471da9d09f1936c0dc9f96360df7dc7a.zip
gcc-2a0e04e2471da9d09f1936c0dc9f96360df7dc7a.tar.gz
gcc-2a0e04e2471da9d09f1936c0dc9f96360df7dc7a.tar.bz2
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
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r--gcc/longlong.h4
1 files changed, 2 insertions, 2 deletions
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; \