longlong.h: Add __udiv_w_sdiv prototype.

2014-09-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	* longlong.h: Add __udiv_w_sdiv prototype.

From-SVN: r215266
This commit is contained in:
Andreas Krebbel 2014-09-15 13:28:32 +00:00 committed by Ulrich Weigand
parent b570c6dd40
commit 5e89d0ad01
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-09-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* longlong.h: Add __udiv_w_sdiv prototype.
2014-06-10 Thomas Schwinge <thomas@codesourcery.com>
PR lto/61334

View File

@ -1687,7 +1687,8 @@ extern UHItype __stormy16_count_leading_zeros (UHItype);
#if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
#define udiv_qrnnd(q, r, nh, nl, d) \
do { \
USItype __r; \
extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype); \
UWtype __r; \
(q) = __udiv_w_sdiv (&__r, nh, nl, d); \
(r) = __r; \
} while (0)