*** empty log message ***

From-SVN: r1502
This commit is contained in:
Torbjorn Granlund 1992-07-07 18:48:05 +00:00
parent 894bc70077
commit 1814cfd91d
1 changed files with 12 additions and 0 deletions

View File

@ -890,6 +890,18 @@
(q) = (USItype) __q1 * __ll_B | __q0; \
(r) = __r0; \
} while (0)
/* If the processor has no udiv_qrnnd but sdiv_qrnnd, go through
__udiv_using_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); \
(r) = __r; \
} while (0)
#endif
/* If udiv_qrnnd was not defined for this processor, use __udiv_qrnnd_c. */
#if !defined (udiv_qrnnd)
#define UDIV_NEEDS_NORMALIZATION 1