aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2013-01-22 21:58:39 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2013-01-22 21:58:39 +0000
commit4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b (patch)
tree3bcd04ff39c671a636fbddb067399187b4cfeca4 /gcc/doc
parent32fc5b8a4bbdf22d8af25310760d229319f7afbb (diff)
downloadgcc-4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b.zip
gcc-4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b.tar.gz
gcc-4ebd56a55be8cf01aca4fb01a9a9a07db0a66b4b.tar.bz2
* doc/extend.texi (__int128): Improve grammar.
From-SVN: r195387
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/extend.texi8
1 files changed, 4 insertions, 4 deletions
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