From: Andreas Krebbel Date: Mon, 15 Sep 2014 13:28:32 +0000 (+0000) Subject: longlong.h: Add __udiv_w_sdiv prototype. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e89d0ad01c570e2009e5d8e0b9b4c3f8dfecf5a;p=gcc.git longlong.h: Add __udiv_w_sdiv prototype. 2014-09-15 Andreas Krebbel * longlong.h: Add __udiv_w_sdiv prototype. From-SVN: r215266 --- diff --git a/include/ChangeLog b/include/ChangeLog index 1cda0dc02b1..a3b6a28b947 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2014-09-15 Andreas Krebbel + + * longlong.h: Add __udiv_w_sdiv prototype. + 2014-06-10 Thomas Schwinge PR lto/61334 diff --git a/include/longlong.h b/include/longlong.h index 31f88cb3f59..42c68ddd62d 100644 --- a/include/longlong.h +++ b/include/longlong.h @@ -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)