entered into RCS

From-SVN: r1545
This commit is contained in:
Charles Hannum 1992-07-09 22:30:46 +00:00
parent 3af184704a
commit 9077d7fa03
1 changed files with 2 additions and 2 deletions

View File

@ -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