OSDN Git Service

entered into RCS
authormycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Jul 1992 22:30:46 +0000 (22:30 +0000)
committermycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Jul 1992 22:30:46 +0000 (22:30 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1545 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/longlong.h

index 20c4099..ca50617 100644 (file)
   } 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