aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2013-01-22 21:58:39 +0000
committerJonathan Wakely <jwakely.gcc@gmail.com>2013-01-22 21:58:39 +0000
commitaed11057ba44f2f24060be572d47dc7f3ea64b01 (patch)
tree3bcd04ff39c671a636fbddb067399187b4cfeca4
parent82a3c85bf164dfb2bf27ffe708f7a9b2a9c3bef8 (diff)
* doc/extend.texi (__int128): Improve grammar.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@195387 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bdf173f9b4d..5870b5d6604 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 8ce6e1edd1b..076aa68c9dd 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