tree-flow-inline.h: Fix a comment typo.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 29 Apr 2005 15:06:07 +0000 (15:06 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 29 Apr 2005 15:06:07 +0000 (15:06 +0000)
* tree-flow-inline.h: Fix a comment typo.
* doc/tree-ssa.texi: Fix a typo.

From-SVN: r98992

gcc/ChangeLog
gcc/doc/tree-ssa.texi
gcc/tree-flow-inline.h

index 889a78ea4a1ace940f00b7e6f737cdf7c730025b..7cf1f42fecfb97d719c34888971050a8aafc6225 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-29  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-flow-inline.h: Fix a comment typo.
+       * doc/tree-ssa.texi: Fix a typo.
+
 2005-04-29  Nathan Sidwell  <nathan@codesourcery.com>
 
        * config/fr30/fr30.c (fr30_expand_prologue): Use gcc_assert and
index faf8cccb292c9d8d9c097cd7a33b8565276550f2..8528406dc2587c25acf751075a1b77f95106b65b 100644 (file)
@@ -1051,7 +1051,7 @@ through the use list, preventing insertions and deletions in the list from
 resulting in invalid pointers.  This is a little slower since it adds a
 placeholder element and moves it through the list.  This element must be 
 also be removed if the loop is terminated early.  A macro 
-(@code{BREAK_FROM SAFE_IMM_USE} is provided for this:
+(@code{BREAK_FROM SAFE_IMM_USE}) is provided for this:
 
 @smallexample
   FOR_EACH_IMM_USE_SAFE (use_p, iter, var)
index 87a243daa3c09f93dbd4d01437635d523d451a55..d8a0b4b727ce3105b2fae6669cfe1b751c6c44ff 100644 (file)
@@ -203,7 +203,7 @@ static inline void
 link_imm_use_to_list (ssa_imm_use_t *linknode, ssa_imm_use_t *list)
 {
   /* Link the new node at the head of the list.  If we are in the process of 
-     traversing the list, we wont visit any new nodes added to it.  */
+     traversing the list, we won't visit any new nodes added to it.  */
   linknode->prev = list;
   linknode->next = list->next;
   list->next->prev = linknode;