diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-29 15:34:45 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-29 15:34:45 +0000 |
commit | 17dc88a9b40b154ecfc8fe7c693efc60a1b3ce0c (patch) | |
tree | 3b78c2674c93e2275d0d3bf41205b0be32dd8d9e /gcc/tree-flow-inline.h | |
parent | c6871095139bbc19c1716601d755c6ca97c56ead (diff) | |
download | gcc-17dc88a9b40b154ecfc8fe7c693efc60a1b3ce0c.tar.gz |
* tree-flow-inline.h, tree-ssa-operands.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98994 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index d8a0b4b727c..5da85e049e1 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -314,7 +314,7 @@ first_safe_imm_use (imm_use_iterator *imm, tree var) return imm->imm_use; } -/* Bump IMM to then next use in the list. */ +/* Bump IMM to the next use in the list. */ static inline use_operand_p next_safe_imm_use (imm_use_iterator *imm) { @@ -332,7 +332,7 @@ next_safe_imm_use (imm_use_iterator *imm) imm->imm_use = imm->imm_use->next; if (! end_safe_imm_use_p (imm)) { - /* This isnt the end, link iternode before the next use. */ + /* This isn't the end, link iternode before the next use. */ ptr->prev = imm->imm_use->prev; ptr->next = imm->imm_use; imm->imm_use->prev->next = ptr; @@ -380,7 +380,7 @@ first_readonly_imm_use (imm_use_iterator *imm, tree var) return imm->imm_use; } -/* Bump IMM to then next use in the list. */ +/* Bump IMM to the next use in the list. */ static inline use_operand_p next_readonly_imm_use (imm_use_iterator *imm) { |