* basic-block.h, c-decl.c, c-parse.in, cgraphunit.c, ddg.c,
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 17 Sep 2004 09:14:12 +0000 (09:14 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 17 Sep 2004 09:14:12 +0000 (09:14 +0000)
gimplify.c, lambda-code.c, optabs.c, predict.c,
tree-scalar-evolution.c, tree-sra.c, tree-ssa-loop-ch.c,
tree-ssa.c, vec.h: Fix comment typos.  Follow spelling
conventions.

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

15 files changed:
gcc/ChangeLog
gcc/basic-block.h
gcc/c-decl.c
gcc/c-parse.in
gcc/cgraphunit.c
gcc/ddg.c
gcc/gimplify.c
gcc/lambda-code.c
gcc/optabs.c
gcc/predict.c
gcc/tree-scalar-evolution.c
gcc/tree-sra.c
gcc/tree-ssa-loop-ch.c
gcc/tree-ssa.c
gcc/vec.h

index 64ffb4e..c3f265f 100644 (file)
@@ -1,5 +1,13 @@
 2004-09-17  Kazu Hirata  <kazu@cs.umass.edu>
 
+       * basic-block.h, c-decl.c, c-parse.in, cgraphunit.c, ddg.c,
+       gimplify.c, lambda-code.c, optabs.c, predict.c,
+       tree-scalar-evolution.c, tree-sra.c, tree-ssa-loop-ch.c,
+       tree-ssa.c, vec.h: Fix comment typos.  Follow spelling
+       conventions.
+
+2004-09-17  Kazu Hirata  <kazu@cs.umass.edu>
+
        * doc/compat.texi, doc/cpp.texi, doc/cppopts.texi,
        doc/extend.texi, doc/install.texi, doc/invoke.texi,
        doc/sourcebuild.texi, doc/tm.texi, doc/tree-ssa.texi,
index 05baeba..037f0ac 100644 (file)
@@ -167,7 +167,7 @@ typedef struct edge_def *edge;
 #define EDGE_SIBCALL           256     /* Edge from sibcall to exit.  */
 #define EDGE_LOOP_EXIT         512     /* Exit of a loop.  */
 #define EDGE_TRUE_VALUE                1024    /* Edge taken when controlling
-                                          predicate is non zero.  */
+                                          predicate is nonzero.  */
 #define EDGE_FALSE_VALUE       2048    /* Edge taken when controlling
                                           predicate is zero.  */
 #define EDGE_EXECUTABLE                4096    /* Edge is executable.  Only
index b3bd689..b29a152 100644 (file)
@@ -6284,7 +6284,7 @@ store_parm_decls (void)
   DECL_SAVED_TREE (fndecl) = push_stmt_list ();
 
   /* ??? Insert the contents of the pending sizes list into the function
-     to be evaluated.  This just changes mis-behaviour until assign_parms
+     to be evaluated.  This just changes mis-behavior until assign_parms
      phase ordering problems are resolved.  */
   {
     tree t;
index 4fefa1b..20ed784 100644 (file)
@@ -361,7 +361,7 @@ static inline int _yylex (void);
 static int  yylex (void);
 static void init_reswords (void);
 
-  /* Initialisation routine for this file.  */
+  /* Initialization routine for this file.  */
 void
 c_parse_init (void)
 {
index e04de96..4153504 100644 (file)
@@ -142,7 +142,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
         ??? Move this to separate file after tree-ssa merge.
 
        We separate inlining decisions from the inliner itself and store it
-       inside callgraph as so called inline plan.  Reffer to cgraph.c
+       inside callgraph as so called inline plan.  Refer to cgraph.c
        documentation about particular representation of inline plans in the
        callgraph
 
index 3cd9c6b..15bfc3c 100644 (file)
--- a/gcc/ddg.c
+++ b/gcc/ddg.c
@@ -894,7 +894,7 @@ free_ddg_all_sccs (ddg_all_sccs_ptr all_sccs)
 \f
 /* Given FROM - a bitmap of source nodes - and TO - a bitmap of destination
    nodes - find all nodes that lie on paths from FROM to TO (not excluding
-   nodes from FROM and TO).  Return non zero if nodes exist.  */
+   nodes from FROM and TO).  Return nonzero if nodes exist.  */
 int
 find_nodes_on_paths (sbitmap result, ddg_ptr g, sbitmap from, sbitmap to)
 {
index 027fd05..5235118 100644 (file)
@@ -2363,7 +2363,7 @@ gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
      the gimplifier will consider this a store to memory.  Doing this 
      gimplification now means that we won't have to deal with complicated
      language-specific trees, nor trees like SAVE_EXPR that can induce
-     exponential search behaviour.  */
+     exponential search behavior.  */
   one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
   if (one == GS_ERROR)
     {
index f438fb6..f780da5 100644 (file)
@@ -1932,7 +1932,7 @@ lambda_loopnest_to_gcc_loopnest (struct loop *old_loopnest,
 
 
 /* Returns true when the vector V is lexicographically positive, in
-   other words, when the first non zero element is positive.  */
+   other words, when the first nonzero element is positive.  */
 
 static bool
 lambda_vector_lexico_pos (lambda_vector v, 
index cc48ab5..0b75a81 100644 (file)
@@ -407,7 +407,7 @@ expand_subword_shift (enum machine_mode op1_mode, optab binoptab,
     {
       /* We must avoid shifting by BITS_PER_WORD bits since that is either
         the same as a zero shift (if shift_mask == BITS_PER_WORD - 1) or
-        has unknown behaviour.  Do a single shift first, then shift by the
+        has unknown behavior.  Do a single shift first, then shift by the
         remainder.  It's OK to use ~OP1 as the remainder if shift counts
         are truncated to the mode size.  */
       carries = expand_binop (word_mode, reverse_unsigned_shift,
index af92aca..8a7f093 100644 (file)
@@ -932,7 +932,7 @@ expr_expected_value (tree expr, bitmap visited)
 
              /* If this PHI has itself as an argument, we cannot
                 determine the string length of this argument.  However,
-                if we can find a expectd constant value for the other
+                if we can find a expected constant value for the other
                 PHI args then we can still be sure that this is
                 likely a constant.  So be optimistic and just
                 continue with the next argument.  */
index 48da0d2..35d2fe9 100644 (file)
@@ -331,7 +331,7 @@ del_scev_info (void *e)
 
 /* Get the index corresponding to VAR in the current LOOP.  If
    it's the first time we ask for this VAR, then we return
-   chrec_not_analysed_yet for this VAR and return its index.  */
+   chrec_not_analyzed_yet for this VAR and return its index.  */
 
 static tree *
 find_var_scev_info (tree var)
index 4ebc061..e54d7d1 100644 (file)
@@ -132,7 +132,7 @@ struct sra_elt
 };
 
 /* Random access to the child of a parent is performed by hashing.
-   This prevents quadratic behaviour, and allows SRA to function
+   This prevents quadratic behavior, and allows SRA to function
    reasonably on larger records.  */
 static htab_t sra_map;
 
index 6ba77da..4d25d0f 100644 (file)
@@ -40,7 +40,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 /* Duplicates headers of loops if they are small enough, so that the statements
    in the loop body are always executed when the loop is entered.  This
-   increases effectivity of code motion optimizations, and reduces the need
+   increases effectiveness of code motion optimizations, and reduces the need
    for loop preconditioning.  */
 
 /* Check whether we should duplicate HEADER of LOOP.  At most *LIMIT
index 8e09755..3e9b213 100644 (file)
@@ -650,8 +650,8 @@ verify_ssa (void)
   verify_alias_info ();
 
   free (definition_block);
-  /* Restore the dominance infomation to its prior known state, so
-     that we do not perturb the compiler's subsequent behaviour.  */
+  /* Restore the dominance information to its prior known state, so
+     that we do not perturb the compiler's subsequent behavior.  */
   if (orig_dom_state == DOM_NONE)
     free_dominance_info (CDI_DOMINATORS);
   else
index 43b7eab..3e272d4 100644 (file)
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -29,7 +29,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    out-of-line generic functions.  The vectors are designed to
    interoperate with the GTY machinery.
 
-   Because of the different behaviour of objects and of pointers to
+   Because of the different behavior of objects and of pointers to
    objects, there are two flavors.  One to deal with a vector of
    pointers to objects, and one to deal with a vector of objects
    themselves.  Both of these pass pointers to objects around -- in
@@ -200,7 +200,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
    Ensure that V has at least RESERVE slots available, if RESERVE is
    >= 0.  If RESERVE < 0, ensure that there is at least one spare
-   slot.  These differ in their reallocation behaviour, the first will
+   slot.  These differ in their reallocation behavior, the first will
    not create additional headroom, but the second mechanism will
    perform the usual exponential headroom increase.  Note this can
    cause V to be reallocated.  Returns nonzero iff reallocation