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] gcc/*.c: Fix comment typos.


Hi,

Committed as obvious.

Kazu Hirata

2004-09-10  Kazu Hirata  <kazu@cs.umass.edu>

	* cgraphunit.c, predict.c, tree-ssa-loop-ivopts.c: Fix comment
	typos.

Index: cgraphunit.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cgraphunit.c,v
retrieving revision 1.77
diff -u -r1.77 cgraphunit.c
--- cgraphunit.c	9 Sep 2004 15:58:19 -0000	1.77
+++ cgraphunit.c	10 Sep 2004 08:48:54 -0000
@@ -820,7 +820,7 @@
       DECL_SAVED_TREE (node->decl) = NULL;
       DECL_STRUCT_FUNCTION (node->decl) = NULL;
       DECL_INITIAL (node->decl) = error_mark_node;
-      /* Elliminate all call edges.  This is important so the call_expr no longer
+      /* Eliminate all call edges.  This is important so the call_expr no longer
 	 points to the dead function body.  */
       while (node->callees)
 	cgraph_remove_edge (node->callees);
Index: predict.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/predict.c,v
retrieving revision 1.113
diff -u -r1.113 predict.c
--- predict.c	9 Sep 2004 12:20:40 -0000	1.113
+++ predict.c	10 Sep 2004 08:48:55 -0000
@@ -313,7 +313,7 @@
   fprintf (file, "\n");
 }
 
-/* We can not predict the probabilities of ougtoing edges of bb.  Set them
+/* We can not predict the probabilities of outgoing edges of bb.  Set them
    evenly and hope for the best.  */
 static void
 set_even_probabilities (basic_block bb)
@@ -846,7 +846,7 @@
     profile_status = PROFILE_GUESSED;
 }
 
-/* Set edge->probability for each succestor edge of BB.  */
+/* Set edge->probability for each successor edge of BB.  */
 void
 guess_outgoing_edge_probabilities (basic_block bb)
 {
Index: tree-ssa-loop-ivopts.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-loop-ivopts.c,v
retrieving revision 2.8
diff -u -r2.8 tree-ssa-loop-ivopts.c
--- tree-ssa-loop-ivopts.c	9 Sep 2004 13:25:19 -0000	2.8
+++ tree-ssa-loop-ivopts.c	10 Sep 2004 08:48:56 -0000
@@ -1559,7 +1559,7 @@
       		 build_int_cst (unsigned_intSI_type_node, 1),
 		 true, NULL);
 
-  /* The same for a long type if it is still fast enought.  */
+  /* The same for a long type if it is still fast enough.  */
   if (BITS_PER_WORD > 32)
     add_candidate (data,
 		   build_int_cst (unsigned_intDI_type_node, 0),


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]