aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/passes.texi
diff options
context:
space:
mode:
authorTom Browder <tom.browder@gmail.com>2008-01-31 23:59:46 +0000
committerGerald Pfeifer <gerald@gcc.gnu.org>2008-01-31 23:59:46 +0000
commitdc9a511d8e070a7767dd2d8078dbf4e7ed65edee (patch)
tree6ec3157d98404d6e74bbd5d41e892e8cdad839f0 /gcc/doc/passes.texi
parent5dc81ee9984d65453048c76f75622a3806d50569 (diff)
downloadgcc-dc9a511d8e070a7767dd2d8078dbf4e7ed65edee.zip
gcc-dc9a511d8e070a7767dd2d8078dbf4e7ed65edee.tar.gz
gcc-dc9a511d8e070a7767dd2d8078dbf4e7ed65edee.tar.bz2
c-tree.texi (Types): Fix grammar.
* doc/c-tree.texi (Types): Fix grammar. (Expression trees): Ditto. * doc/passes.texi (Tree-SSA passes): Ditto. * doc/configterms.texi (Configure Terms): Fix typo. * doc/cpp.texi (Common Predefined Macros): Ditto. * doc/md.texi (Machine Constraints): Ditto. * doc/makefile.texi (Makefile): Add comma. From-SVN: r131987
Diffstat (limited to 'gcc/doc/passes.texi')
-rw-r--r--gcc/doc/passes.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/passes.texi b/gcc/doc/passes.texi
index 2f35439..b9a6de8 100644
--- a/gcc/doc/passes.texi
+++ b/gcc/doc/passes.texi
@@ -366,7 +366,7 @@ This pass transforms tail recursion into a loop. It is located in
@item Forward store motion
-This pass sinks stores and assignments down the flowgraph closer to it's
+This pass sinks stores and assignments down the flowgraph closer to their
use point. The pass is located in @file{tree-ssa-sink.c} and is
described by @code{pass_sink_code}.
@@ -384,7 +384,7 @@ in @file{tree-ssa-math-opts.c} and is described by
@item Full redundancy elimination
-This is a simpler form of PRE that only eliminate redundancies that
+This is a simpler form of PRE that only eliminates redundancies that
occur an all paths. It is located in @file{tree-ssa-pre.c} and
described by @code{pass_fre}.