* tree-flow-inline.h, tree-ssa-operands.c: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 29 Apr 2005 15:34:45 +0000 (15:34 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 29 Apr 2005 15:34:45 +0000 (15:34 +0000)
From-SVN: r98994

gcc/ChangeLog
gcc/tree-flow-inline.h
gcc/tree-ssa-operands.c

index 7cf1f42fecfb97d719c34888971050a8aafc6225..f52143430efff8599704ce533d54f169df165f3c 100644 (file)
@@ -3,6 +3,8 @@
        * tree-flow-inline.h: Fix a comment typo.
        * doc/tree-ssa.texi: Fix a typo.
 
+       * tree-flow-inline.h, tree-ssa-operands.c: Fix comment typos.
+
 2005-04-29  Nathan Sidwell  <nathan@codesourcery.com>
 
        * config/fr30/fr30.c (fr30_expand_prologue): Use gcc_assert and
index d8a0b4b727ce3105b2fae6669cfe1b751c6c44ff..5da85e049e17b0aa4e1f3c901672b2c619b58f92 100644 (file)
@@ -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)
 {
index a010b3040ef6001ddb66c04d65ba3c733b4a682c..7364052e10fb5b75d4a945fb81c8a96a0d982e92 100644 (file)
@@ -1198,8 +1198,8 @@ swap_tree_operands (tree *exp0, tree *exp1)
            use1 = x;
            break;
          }
-      /* If both uses don't have operand entries, there isnt much we can do
-         at this point. Presumably we dont need to worry about it.  */
+      /* If both uses don't have operand entries, there isn't much we can do
+         at this point.  Presumably we dont need to worry about it.  */
       if (use0 != NUM_USES (uses) && use1 != NUM_USES (uses))
         {
          tree *tmp = USE_OP_PTR (uses, use1)->use;