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


Hi,

Committed as obvious.

Kazu Hirata

2005-07-29  Kazu Hirata  <kazu@codesourcery.com>

	* cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
	Fix comment typos.

Index: cfg.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfg.c,v
retrieving revision 1.102
diff -u -d -p -r1.102 cfg.c
--- cfg.c	28 Jul 2005 07:41:21 -0000	1.102
+++ cfg.c	29 Jul 2005 14:48:03 -0000
@@ -926,7 +926,7 @@ scale_bbs_frequencies_int (basic_block *
   if (num > den)
     return;
   /* Assume that the users are producing the fraction from frequencies
-     that never grow far enought to risk arithmetic overflow.  */
+     that never grow far enough to risk arithmetic overflow.  */
   gcc_assert (num < 65536);
   for (i = 0; i < nbbs; i++)
     {
Index: tree-complex.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-complex.c,v
retrieving revision 2.40
diff -u -d -p -r2.40 tree-complex.c
--- tree-complex.c	26 Jul 2005 21:38:45 -0000	2.40
+++ tree-complex.c	29 Jul 2005 14:48:04 -0000
@@ -502,7 +502,7 @@ set_component_ssa_name (tree ssa_name, b
     ;
 
   /* If we've nothing assigned, and the value we're given is already stable,
-     then install that as the value for this SSA_NAME.  This pre-emptively
+     then install that as the value for this SSA_NAME.  This preemptively
      copy-propagates the value, which avoids unnecessary memory allocation.  */
   else if (is_gimple_min_invariant (value))
     {
Index: config/frv/frv.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/frv/frv.c,v
retrieving revision 1.96
diff -u -d -p -r1.96 frv.c
--- config/frv/frv.c	28 Jul 2005 02:03:36 -0000	1.96
+++ config/frv/frv.c	29 Jul 2005 14:48:06 -0000
@@ -7838,7 +7838,7 @@ frv_optimize_membar_local (basic_block b
      is null if the membar has already been deleted.
 
      Note that the initialization here should only be needed to
-     supress warnings.  */
+     suppress warnings.  */
   next_membar = 0;
 
   /* USED_REGS is the set of registers that are used before the
Index: config/i386/i386.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i386/i386.c,v
retrieving revision 1.843
diff -u -d -p -r1.843 i386.c
--- config/i386/i386.c	18 Jul 2005 06:39:18 -0000	1.843
+++ config/i386/i386.c	29 Jul 2005 14:48:08 -0000
@@ -17490,7 +17490,7 @@ ix86_expand_vector_extract (bool mmx_ok,
     }
 }
 
-/* Expand a vector reduction on V4SFmode for SSE1.  FN is the binar
+/* Expand a vector reduction on V4SFmode for SSE1.  FN is the binary
    pattern to reduce; DEST is the destination; IN is the input vector.  */
 
 void


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