Commit 5e89d0ad by Andreas Krebbel Committed by Ulrich Weigand

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
parent b570c6dd
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> 2014-06-10 Thomas Schwinge <thomas@codesourcery.com>
PR lto/61334 PR lto/61334
......
...@@ -1687,7 +1687,8 @@ extern UHItype __stormy16_count_leading_zeros (UHItype); ...@@ -1687,7 +1687,8 @@ extern UHItype __stormy16_count_leading_zeros (UHItype);
#if !defined (udiv_qrnnd) && defined (sdiv_qrnnd) #if !defined (udiv_qrnnd) && defined (sdiv_qrnnd)
#define udiv_qrnnd(q, r, nh, nl, d) \ #define udiv_qrnnd(q, r, nh, nl, d) \
do { \ do { \
USItype __r; \ extern UWtype __udiv_w_sdiv (UWtype *, UWtype, UWtype, UWtype); \
UWtype __r; \
(q) = __udiv_w_sdiv (&__r, nh, nl, d); \ (q) = __udiv_w_sdiv (&__r, nh, nl, d); \
(r) = __r; \ (r) = __r; \
} while (0) } while (0)
......
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