OSDN Git Service

* cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jul 2005 14:52:00 +0000 (14:52 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Jul 2005 14:52:00 +0000 (14:52 +0000)
Fix comment typos.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102555 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 374414b..ef9d11e 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 9644132..c46ac0b 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 9213f9b..0731302 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 8dd9698..591b8b6 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 a63134f..de23119 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))
     {