This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] tree-flow-inline.h, tree-ssa.texi: Fix comment/doc typos.


Hi,

Committed as obvious.

Kazu Hirata

2005-04-29  Kazu Hirata  <kazu@cs.umass.edu>

	* tree-flow-inline.h: Fix a comment typo.
	* doc/tree-ssa.texi: Fix a typo.

Index: tree-flow-inline.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-flow-inline.h,v
retrieving revision 2.41
diff -u -d -p -r2.41 tree-flow-inline.h
--- tree-flow-inline.h	26 Apr 2005 17:37:32 -0000	2.41
+++ tree-flow-inline.h	29 Apr 2005 15:02:45 -0000
@@ -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;
Index: doc/tree-ssa.texi
===================================================================
RCS file: /cvs/gcc/gcc/gcc/doc/tree-ssa.texi,v
retrieving revision 1.24
diff -u -d -p -r1.24 tree-ssa.texi
--- doc/tree-ssa.texi	17 Apr 2005 06:42:03 -0000	1.24
+++ doc/tree-ssa.texi	29 Apr 2005 15:02:46 -0000
@@ -1051,7 +1051,7 @@ through the use list, preventing inserti
 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 Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]