summaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authormycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4>1992-07-09 22:30:46 +0000
committermycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4>1992-07-09 22:30:46 +0000
commita6b5e7ff314b348d13f3ff5ea40b6cc473e15c8d (patch)
tree4f5bdc47922fb3cc44ce078a06d3bf3cdcca38c4 /gcc/longlong.h
parent4b8f50a8692ae1e3f4e7272195b1082c62825e20 (diff)
downloadgcc-a6b5e7ff314b348d13f3ff5ea40b6cc473e15c8d.tar.gz
entered into RCS
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1545 138bc75d-0d04-0410-961f-82ee72b054a4
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 20c4099f2a7..ca506178a10 100644
--- a/gcc/longlong.h
+++ b/gcc/longlong.h
@@ -892,12 +892,12 @@
} while (0)
/* If the processor has no udiv_qrnnd but sdiv_qrnnd, go through
- __udiv_using_sdiv (defined in libgcc or elsewhere). */
+ __udiv_w_sdiv (defined in libgcc or elsewhere). */
#if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
#define udiv_qrnnd(q, r, nh, nl, d) \
do { \
USItype __r; \
- (q) = __udiv_using_sdiv (&__r, nh, nl, d); \
+ (q) = __udiv_w_sdiv (&__r, nh, nl, d); \
(r) = __r; \
} while (0)
#endif