Hi, This fixes the documentation aboud __udivmoddi4 and __udivmodti4. There was a copy and paste error for both of these functions. __udivmoddi3 was used instead of __udivmoddi4 and __udivti3 instead of __udivmodti4.
Committed as obvious after double checking that these are the name of the functions are emitted by optabs.c Thanks, Andrew Pinski ChangeLog: * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo.
Index: doc/libgcc.texi =================================================================== --- doc/libgcc.texi (revision 183861) +++ doc/libgcc.texi (working copy) @@ -106,8 +106,8 @@ These functions return the quotient of t 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}.