diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2007-01-27 23:51:49 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2007-01-27 23:51:49 +0000 |
commit | 1eaf20ec87c8f7403f91a465c892d381df42e468 (patch) | |
tree | def672de14809bb630fc7615a16ab025664fcfb2 /gcc/doc/tree-ssa.texi | |
parent | 7fbb9a499c94f945e4c495e431aa16ad0ff47e8d (diff) | |
download | gcc-1eaf20ec87c8f7403f91a465c892d381df42e468.zip gcc-1eaf20ec87c8f7403f91a465c892d381df42e468.tar.gz gcc-1eaf20ec87c8f7403f91a465c892d381df42e468.tar.bz2 |
sourcebuild.texi: Add comma for clarity.
* 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.
From-SVN: r121241
Diffstat (limited to 'gcc/doc/tree-ssa.texi')
-rw-r--r-- | gcc/doc/tree-ssa.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/tree-ssa.texi b/gcc/doc/tree-ssa.texi index 9895bd4..9fb7939 100644 --- a/gcc/doc/tree-ssa.texi +++ b/gcc/doc/tree-ssa.texi @@ -874,7 +874,7 @@ incorrect assumptions about them. Operands are updated as soon as the statement is finished via a call to @code{update_stmt}. If statement elements are changed via @code{SET_USE} or @code{SET_DEF}, then no further action is required -(ie, those macros take care of updating the statement). If changes +(i.e., those macros take care of updating the statement). If changes are made by manipulating the statement's tree directly, then a call must be made to @code{update_stmt} when complete. Calling one of the @code{bsi_insert} routines or @code{bsi_replace} performs an implicit @@ -1109,9 +1109,9 @@ each stmt after that is done: @} @end smallexample -There are 2 iterators which can be used. @code{FOR_EACH_IMM_USE_FAST} is used -when the immediate uses are not changed, ie. you are looking at the uses, but -not setting them. +There are 2 iterators which can be used. @code{FOR_EACH_IMM_USE_FAST} is +used when the immediate uses are not changed, i.e., you are looking at the +uses, but not setting them. If they do get changed, then care must be taken that things are not changed under the iterators, so use the @code{FOR_EACH_IMM_USE_STMT} and |