From: pinskia Date: Fri, 3 Feb 2012 04:11:31 +0000 (+0000) Subject: 2012-02-02 Andrew Pinski X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24d7beb3cbbeebb1f269647fe6068179ff1bf6f0;p=thirdparty%2Fgcc.git 2012-02-02 Andrew Pinski PR middle-end/47982 PR middle-end/43967 * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183862 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 42df0679ed8f..cb11fed3feb8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-02-02 Andrew Pinski + + PR middle-end/47982 + PR middle-end/43967 + * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo. + 2012-02-02 Jakub Jelinek PR middle-end/48071 diff --git a/gcc/doc/libgcc.texi b/gcc/doc/libgcc.texi index 04347aa6dbeb..9a22223bc90f 100644 --- a/gcc/doc/libgcc.texi +++ b/gcc/doc/libgcc.texi @@ -106,8 +106,8 @@ These functions return the quotient of the unsigned division of @var{a} and @var{b}. @end deftypefn -@deftypefn {Runtime Function} {unsigned long} __udivmoddi3 (unsigned long @var{a}, unsigned long @var{b}, unsigned long *@var{c}) -@deftypefnx {Runtime Function} {unsigned long long} __udivti3 (unsigned long long @var{a}, unsigned long long @var{b}, unsigned long long *@var{c}) +@deftypefn {Runtime Function} {unsigned long} __udivmoddi4 (unsigned long @var{a}, unsigned long @var{b}, unsigned long *@var{c}) +@deftypefnx {Runtime Function} {unsigned long long} __udivmodti4 (unsigned long long @var{a}, unsigned long long @var{b}, unsigned long long *@var{c}) These functions calculate both the quotient and remainder of the unsigned division of @var{a} and @var{b}. The return value is the quotient, and the remainder is placed in variable pointed to by @var{c}.