aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMingjie Xing <mingjie.xing@gmail.com>2012-08-23 09:30:24 +0000
committerMingjie Xing <xmj@gcc.gnu.org>2012-08-23 09:30:24 +0000
commitfb489f55b58e5725bf04fbd26181c3c196fb5f32 (patch)
tree73087434baca7f18a9becf4175ab200288079b19
parent3f6de40f27ef93e7078b08084dd29e6916a03b9d (diff)
downloadgcc-fb489f55b58e5725bf04fbd26181c3c196fb5f32.zip
gcc-fb489f55b58e5725bf04fbd26181c3c196fb5f32.tar.gz
gcc-fb489f55b58e5725bf04fbd26181c3c196fb5f32.tar.bz2
Fix typo in gty.texi.
From-SVN: r190617
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/gty.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ef1b5ca..214b40e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2012-08-23 Mingjie Xing <mingjie.xing@gmail.com>
+
+ * doc/gty.texi: Fix typo.
+
2012-08-23 Richard Guenther <rguenther@suse.de>
* tree-ssa-loop-manip.c (add_exit_phis_var): Allow virtual operands.
diff --git a/gcc/doc/gty.texi b/gcc/doc/gty.texi
index cc46a61..b2214b8 100644
--- a/gcc/doc/gty.texi
+++ b/gcc/doc/gty.texi
@@ -666,7 +666,7 @@ The GCC build tree is needed to be present in that mode.
The GCC garbage collector GGC is only invoked explicitly. In contrast
with many other garbage collectors, it is not implicitly invoked by
allocation routines when a lot of memory has been consumed. So the
-only way to have GGC reclaim storage it to call the @code{ggc_collect}
+only way to have GGC reclaim storage is to call the @code{ggc_collect}
function explicitly. This call is an expensive operation, as it may
have to scan the entire heap. Beware that local variables (on the GCC
call stack) are not followed by such an invocation (as many other