cfg.c, [...]: Fix comment typos.
authorKazu Hirata <kazu@codesourcery.com>
Fri, 29 Jul 2005 14:52:00 +0000 (14:52 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 29 Jul 2005 14:52:00 +0000 (14:52 +0000)
* cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
Fix comment typos.

From-SVN: r102555

gcc/ChangeLog
gcc/cfg.c
gcc/config/frv/frv.c
gcc/config/i386/i386.c
gcc/tree-complex.c

index 374414bc838d398b57ae6f7f92f4c954c9c6f2ff..ef9d11e897c919383ba4d90458f69c7c1f13eb0a 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-29  Kazu Hirata  <kazu@codesourcery.com>
+
+       * cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
+       Fix comment typos.
+
 2005-07-29  Diego Novillo  <dnovillo@redhat.com>
 
        * tree-ssa-dom.c (struct opt_stats_d): Add field num_iterations.
index 96441326ac699eb52367a27502fc42b9d3d8f075..c46ac0b88eeb1b06d9098f63e7befca5dc65dbba 100644 (file)
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -926,7 +926,7 @@ scale_bbs_frequencies_int (basic_block *bbs, int nbbs, int num, int den)
   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 9213f9b901d374a6084f2a12a75ac99992e504b8..0731302618b8837aa6642506a9299f70484ac8dd 100644 (file)
@@ -7838,7 +7838,7 @@ frv_optimize_membar_local (basic_block bb, struct frv_io *next_io,
      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 8dd96986cf50e0f7cd87b87414d3f7f9b9c9a59f..591b8b6a7aaf358cb048ddafa682a93a2c923257 100644 (file)
@@ -17490,7 +17490,7 @@ ix86_expand_vector_extract (bool mmx_ok, rtx target, rtx vec, int elt)
     }
 }
 
-/* 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 a63134f0ec1473fb5813c9778514ebbd08f1a0ac..de231191824d61cd258ee6d3ae101d42ab94e1da 100644 (file)
@@ -502,7 +502,7 @@ set_component_ssa_name (tree ssa_name, bool imag_p, tree value)
     ;
 
   /* 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))
     {