Commit 9077d7fa by Charles Hannum

entered into RCS

From-SVN: r1545
parent 3af18470
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment