aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorAndrew Pinski <apinski@cavium.com>2012-02-03 04:11:31 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2012-02-02 20:11:31 -0800
commit75471253277794e55541de6e894da0bddb343c3e (patch)
tree9b4400c2737470e06c633da05c87b15115b75f28 /gcc/doc
parentcf54a93ca9e19864126abefd6649525a9dc23d51 (diff)
downloadgcc-75471253277794e55541de6e894da0bddb343c3e.zip
gcc-75471253277794e55541de6e894da0bddb343c3e.tar.gz
gcc-75471253277794e55541de6e894da0bddb343c3e.tar.bz2
re PR middle-end/47982 (Documentation error on libgcc __udivmoddi4)
2012-02-02 Andrew Pinski <apinski@cavium.com> PR middle-end/47982 PR middle-end/43967 * doc/libgcc.texi (__udivmoddi4/__udivmodti4): Fix documentation typo. From-SVN: r183862
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/libgcc.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/libgcc.texi b/gcc/doc/libgcc.texi
index 04347aa..9a22223 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}.