diff options
author | aldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-15 15:35:32 +0000 |
---|---|---|
committer | aldot <aldot@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-15 15:35:32 +0000 |
commit | 5fbc22b7a6a948fb63e2921618448032d5e9d7ad (patch) | |
tree | 5de89cc8e8405fc23147940c6b6c2af09bd1caa2 | |
parent | 350a78ba6d64fdbba25f7a4c5e084d6f2e37ae23 (diff) | |
download | gcc-5fbc22b7a6a948fb63e2921618448032d5e9d7ad.tar.gz |
2007-12-15 Bernhard Fischer <aldot@gcc.gnu.org>
* tree-flow-inline.h.c (next_readonly_imm_use): Fix typo in comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130954 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/tree-flow-inline.h | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 87df41bbf29..51ab60ed090 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,8 @@ -2007-12-15 Bernhard Fischer <> +2007-12-15 Bernhard Fischer <aldot@gcc.gnu.org> + + * tree-flow-inline.h.c (next_readonly_imm_use): Fix typo in comment. + +2007-12-15 Bernhard Fischer <aldot@gcc.gnu.org> * toplev.c (process_options): Fix typo in warning. diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index 4669588558e..1074f680caa 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); |