]> gcc.gnu.org Git - gcc.git/commitdiff
entered into RCS
authorCharles Hannum <mycroft@gnu.org>
Thu, 9 Jul 1992 22:30:46 +0000 (22:30 +0000)
committerCharles Hannum <mycroft@gnu.org>
Thu, 9 Jul 1992 22:30:46 +0000 (22:30 +0000)
From-SVN: r1545

gcc/longlong.h

index 20c4099f2a78fc6095b888cbf190705b59bacf6e..ca506178a106e538a0d8ceea2e9d667934c6da71 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
This page took 0.054875 seconds and 5 git commands to generate.