diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-29 15:06:07 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-29 15:06:07 +0000 |
commit | be12e697e42187347dffea36e37db82cf04d37a5 (patch) | |
tree | 53b2bf17c9be2fae7bff6c994de299e07f052fb5 /gcc/doc/tree-ssa.texi | |
parent | 4e81e7c201f6093138fa387d8bdc708a279c6f0a (diff) | |
download | gcc-be12e697e42187347dffea36e37db82cf04d37a5.zip gcc-be12e697e42187347dffea36e37db82cf04d37a5.tar.gz gcc-be12e697e42187347dffea36e37db82cf04d37a5.tar.bz2 |
tree-flow-inline.h: Fix a comment typo.
* tree-flow-inline.h: Fix a comment typo.
* doc/tree-ssa.texi: Fix a typo.
From-SVN: r98992
Diffstat (limited to 'gcc/doc/tree-ssa.texi')
-rw-r--r-- | gcc/doc/tree-ssa.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/tree-ssa.texi b/gcc/doc/tree-ssa.texi index faf8ccc..8528406 100644 --- a/gcc/doc/tree-ssa.texi +++ b/gcc/doc/tree-ssa.texi @@ -1051,7 +1051,7 @@ through the use list, preventing insertions and deletions in the list from resulting in invalid pointers. This is a little slower since it adds a placeholder element and moves it through the list. This element must be also be removed if the loop is terminated early. A macro -(@code{BREAK_FROM SAFE_IMM_USE} is provided for this: +(@code{BREAK_FROM SAFE_IMM_USE}) is provided for this: @smallexample FOR_EACH_IMM_USE_SAFE (use_p, iter, var) |