aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/extend.texi
diff options
context:
space:
mode:
authorOleg Endo <olegendo@gcc.gnu.org>2012-09-26 20:51:20 +0000
committerOleg Endo <olegendo@gcc.gnu.org>2012-09-26 20:51:20 +0000
commita104e60b67167a6cfc831a2b9469a967024410ac (patch)
treea26a7395d1793c57ef6f8c38e3b5efc8fe666900 /gcc/doc/extend.texi
parentdb9f539414cada2e32492cd2f45f317e55c1bed8 (diff)
downloadgcc-a104e60b67167a6cfc831a2b9469a967024410ac.zip
gcc-a104e60b67167a6cfc831a2b9469a967024410ac.tar.gz
gcc-a104e60b67167a6cfc831a2b9469a967024410ac.tar.bz2
extend.texi (bswap Builtins): Change signed types to unsigned types.
* doc/extend.texi (bswap Builtins): Change signed types to unsigned types. From-SVN: r191774
Diffstat (limited to 'gcc/doc/extend.texi')
-rw-r--r--gcc/doc/extend.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 5a75d45..8b4a867 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -8611,18 +8611,18 @@ Similar to @code{__builtin_powi}, except the argument and return types
are @code{long double}.
@end deftypefn
-@deftypefn {Built-in Function} int16_t __builtin_bswap16 (int16_t x)
+@deftypefn {Built-in Function} uint16_t __builtin_bswap16 (uint16_t x)
Returns @var{x} with the order of the bytes reversed; for example,
@code{0xaabb} becomes @code{0xbbaa}. Byte here always means
exactly 8 bits.
@end deftypefn
-@deftypefn {Built-in Function} int32_t __builtin_bswap32 (int32_t x)
+@deftypefn {Built-in Function} uint32_t __builtin_bswap32 (uint32_t x)
Similar to @code{__builtin_bswap16}, except the argument and return types
are 32-bit.
@end deftypefn
-@deftypefn {Built-in Function} int64_t __builtin_bswap64 (int64_t x)
+@deftypefn {Built-in Function} uint64_t __builtin_bswap64 (uint64_t x)
Similar to @code{__builtin_bswap32}, except the argument and return types
are 64-bit.
@end deftypefn