aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow-inline.h
diff options
context:
space:
mode:
authorBernhard Fischer <aldot@gcc.gnu.org>2007-12-15 16:35:32 +0100
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>2007-12-15 16:35:32 +0100
commitdc377e879af19ade5acfefce619c484c93ca8e74 (patch)
tree5de89cc8e8405fc23147940c6b6c2af09bd1caa2 /gcc/tree-flow-inline.h
parent772cf0671a433e1618ff092cb84e1acbd6cc75e3 (diff)
downloadgcc-dc377e879af19ade5acfefce619c484c93ca8e74.zip
gcc-dc377e879af19ade5acfefce619c484c93ca8e74.tar.gz
gcc-dc377e879af19ade5acfefce619c484c93ca8e74.tar.bz2
tree-flow-inline.h.c (next_readonly_imm_use): Fix typo in comment.
2007-12-15 Bernhard Fischer <aldot@gcc.gnu.org> * tree-flow-inline.h.c (next_readonly_imm_use): Fix typo in comment. From-SVN: r130954
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r--gcc/tree-flow-inline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h
index 4669588..1074f68 100644
--- a/gcc/tree-flow-inline.h
+++ b/gcc/tree-flow-inline.h
@@ -497,8 +497,8 @@ next_readonly_imm_use (imm_use_iterator *imm)
use_operand_p old = imm->imm_use;
#ifdef ENABLE_CHECKING
- /* If this assertion fails, it indicates the 'next' pointer has changed
- since we the last bump. This indicates that the list is being modified
+ /* If this assertion fails, it indicates the 'next' pointer has changed
+ since the last bump. This indicates that the list is being modified
via stmt changes, or SET_USE, or somesuch thing, and you need to be
using the SAFE version of the iterator. */
gcc_assert (imm->iter_node.next == old->next);