diff options
author | Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> | 2018-10-26 21:32:15 +0000 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2018-10-26 23:32:15 +0200 |
commit | e6c5724129680248c9b7810889c694de7802f809 (patch) | |
tree | 468e8cc0245568ccbc18f0677c0e2af6cdbcff7e /gcc | |
parent | ef4adf1f79e380315124ed8bc98cd5b2a6f027ef (diff) | |
download | gcc-e6c5724129680248c9b7810889c694de7802f809.zip gcc-e6c5724129680248c9b7810889c694de7802f809.tar.gz gcc-e6c5724129680248c9b7810889c694de7802f809.tar.bz2 |
powerpc: Fix typos in the manual
2018-10-26 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
* doc/extend.texi (PowerPC builtins): Fix __builtin_unpack_ibm128
return type and other typos.
From-SVN: r265548
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae4aa6e..6d4bd6b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-10-26 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> + + * doc/extend.texi (PowerPC builtins): Fix __builtin_unpack_ibm128 + return type and other typos. + 2018-10-26 Aaron Sawdey <acsawdey@linux.ibm.com> * config/rs6000/rs6000-string.c (expand_strncmp_gpr_sequence): Change to diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index edf8711..7aeb4fd 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -15811,7 +15811,7 @@ processors: @smallexample uint64_t __builtin_ppc_get_timebase (); unsigned long __builtin_ppc_mftb (); -__ibm128 __builtin_unpack_ibm128 (__ibm128, int); +double __builtin_unpack_ibm128 (__ibm128, int); __ibm128 __builtin_pack_ibm128 (double, double); double __builtin_mffs (void); void __builtin_mtfsb0 (const int); @@ -15927,13 +15927,13 @@ The @code{__builtin_unpack_longdouble} function takes a the constant is 0, the first @code{double} within the @code{long double} is returned, otherwise the second @code{double} is returned. The @code{__builtin_unpack_longdouble} function is only -availble if @code{long double} uses the IBM extended double +available if @code{long double} uses the IBM extended double representation. The @code{__builtin_pack_longdouble} function takes two @code{double} arguments and returns a @code{long double} value that combines the two arguments. The @code{__builtin_pack_longdouble} function is only -availble if @code{long double} uses the IBM extended double +available if @code{long double} uses the IBM extended double representation. The @code{__builtin_unpack_ibm128} function takes a @code{__ibm128} |