summaryrefslogtreecommitdiff
path: root/gcc/doc/passes.texi
diff options
context:
space:
mode:
authorgerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-27 23:51:49 +0000
committergerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-27 23:51:49 +0000
commitd1c59264d14663f2b099c2d2dc77f5fc42279e54 (patch)
treedef672de14809bb630fc7615a16ab025664fcfb2 /gcc/doc/passes.texi
parent5620e045ec3e5b0a24e059dfcfe075671acad926 (diff)
downloadgcc-d1c59264d14663f2b099c2d2dc77f5fc42279e54.tar.gz
* doc/sourcebuild.texi: Add comma for clarity.
* doc/extend.texi: Fix some typos. * doc/passes.texi: Likewise. * doc/cppinternals.texi: Likewise. * doc/c-tree.texi: Likewise. * doc/tree-ssa.texi: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121241 138bc75d-0d04-0410-961f-82ee72b054a4
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 90c9448c2c1..bd8c476d933 100644
--- a/gcc/doc/passes.texi
+++ b/gcc/doc/passes.texi
@@ -223,7 +223,7 @@ library. The pass is located in @file{omp-low.c} and is described by
@item Lower control flow
-This pass flattens @code{if} statements (@code{COND_EXPR}) and
+This pass flattens @code{if} statements (@code{COND_EXPR})
and moves lexical bindings (@code{BIND_EXPR}) out of line. After
this pass, all @code{if} statements will have exactly two @code{goto}
statements in its @code{then} and @code{else} arms. Lexical binding
@@ -324,7 +324,7 @@ This pass performs a flow sensitive SSA-based points-to analysis.
The resulting may-alias, must-alias, and escape analysis information
is used to promote variables from in-memory addressable objects to
non-aliased variables that can be renamed into SSA form. We also
-update the @code{VDEF}/@code{VUSE} memory tags for non-renamable
+update the @code{VDEF}/@code{VUSE} memory tags for non-renameable
aggregates so that we get fewer false kills. The pass is located
in @file{tree-ssa-alias.c} and is described by @code{pass_may_alias}.