diff options
author | Jonathan Wakely <jwakely.gcc@gmail.com> | 2013-01-22 21:58:39 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2013-01-22 21:58:39 +0000 |
commit | 4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b (patch) | |
tree | 3bcd04ff39c671a636fbddb067399187b4cfeca4 | |
parent | 32fc5b8a4bbdf22d8af25310760d229319f7afbb (diff) | |
download | gcc-4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b.zip gcc-4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b.tar.gz gcc-4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b.tar.bz2 |
* doc/extend.texi (__int128): Improve grammar.
From-SVN: r195387
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bdf173f..5870b5d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-01-22 Jonathan Wakely <jwakely.gcc@gmail.com> + + * doc/extend.texi (__int128): Improve grammar. + 2012-01-22 Uros Bizjak <ubizjak@gmail.com> PR target/56028 diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 8ce6e1e..076aa68 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -811,15 +811,15 @@ the middle operand uses the value already computed without the undesirable effects of recomputing it. @node __int128 -@section 128-bits integers +@section 128-bit integers @cindex @code{__int128} data types As an extension the integer scalar type @code{__int128} is supported for -targets having an integer mode wide enough to hold 128 bits. +targets which have an integer mode wide enough to hold 128 bits. Simply write @code{__int128} for a signed 128-bit integer, or @code{unsigned __int128} for an unsigned 128-bit integer. There is no -support in GCC to express an integer constant of type @code{__int128} -for targets having @code{long long} integer less than 128 bits wide. +support in GCC for expressing an integer constant of type @code{__int128} +for targets with @code{long long} integer less than 128 bits wide. @node Long Long @section Double-Word Integers |