From 17dc88a9b40b154ecfc8fe7c693efc60a1b3ce0c Mon Sep 17 00:00:00 2001 From: kazu Date: Fri, 29 Apr 2005 15:34:45 +0000 Subject: * 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 --- gcc/tree-flow-inline.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/tree-flow-inline.h') 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) { -- cgit v1.2.1