* doc/extend.texi (Object Size Checking): Improve grammar.
authorJonathan Wakely <jwakely@redhat.com>
Thu, 27 Apr 2017 18:44:25 +0000 (19:44 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Thu, 27 Apr 2017 18:44:25 +0000 (19:44 +0100)
From-SVN: r247349

gcc/ChangeLog
gcc/doc/extend.texi

index 526a91dc9f6817b948418b87f87709d311e8dea1..7463a78bd5c105e581a21f601979ea44b3262b5d 100644 (file)
@@ -1,3 +1,7 @@
+2017-04-27  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/extend.texi (Object Size Checking): Improve grammar.
+
 2017-04-27  Richard Earnshaw  <rearnsha@arm.com>
 
        PR target/80530
index f7cbe447307dea675ee47cab3c2560bf69095aeb..1255995eb78dc241d1711d3b69f4c57dcae3ecc6 100644 (file)
@@ -10209,14 +10209,14 @@ assert (__builtin_object_size (q, 1) == sizeof (var.b));
 There are built-in functions added for many common string operation
 functions, e.g., for @code{memcpy} @code{__builtin___memcpy_chk}
 built-in is provided.  This built-in has an additional last argument,
-which is the number of bytes remaining in object the @var{dest}
+which is the number of bytes remaining in the object the @var{dest}
 argument points to or @code{(size_t) -1} if the size is not known.
 
 The built-in functions are optimized into the normal string functions
 like @code{memcpy} if the last argument is @code{(size_t) -1} or if
 it is known at compile time that the destination object will not
-be overflown.  If the compiler can determine at compile time the
-object will be always overflown, it issues a warning.
+be overflowed.  If the compiler can determine at compile time that the
+object will always be overflowed, it issues a warning.
 
 The intended use can be e.g.@: