data.c, [...]: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 14 Sep 2004 12:37:28 +0000 (12:37 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 14 Sep 2004 12:37:28 +0000 (12:37 +0000)
* data.c, decl.c, f95-lang.c, gfortran.h, match.c,
trans-array.c, trans-common.c, trans-expr.c,
trans-intrinsic.c, trans-stmt.c, trans-types.c, trans.h: Fix
comment typos.  Follow spelling conventions.

From-SVN: r87492

13 files changed:
gcc/fortran/ChangeLog
gcc/fortran/data.c
gcc/fortran/decl.c
gcc/fortran/f95-lang.c
gcc/fortran/gfortran.h
gcc/fortran/match.c
gcc/fortran/trans-array.c
gcc/fortran/trans-common.c
gcc/fortran/trans-expr.c
gcc/fortran/trans-intrinsic.c
gcc/fortran/trans-stmt.c
gcc/fortran/trans-types.c
gcc/fortran/trans.h

index 092cfe2ee0401046b99e09dbc5788b205860f136..1df48e167497b1bf5d183717cf16b7a81dd965c2 100644 (file)
@@ -1,3 +1,10 @@
+2004-09-14  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * data.c, decl.c, f95-lang.c, gfortran.h, match.c,
+       trans-array.c, trans-common.c, trans-expr.c,
+       trans-intrinsic.c, trans-stmt.c, trans-types.c, trans.h: Fix
+       comment typos.  Follow spelling conventions.
+
 2004-09-09  Paul Brook  <paul@codesourcery.com>
 
        * scanner.c (get_file): Add ATTRIBUTE_UNUSED.
index ceb6f3186678a1e6fe07f0ed1444fb3e994a0c91..56479718d417003f5e9f86cc835d6bdfbb22abfe 100644 (file)
@@ -329,7 +329,7 @@ gfc_assign_data_value (gfc_expr * lvalue, gfc_expr * rvalue, mpz_t index)
     last_con->expr = expr;
 }
 
-/* Similarly, but initialize REPEAT consectutive values in LVALUE the same
+/* Similarly, but initialize REPEAT consecutive values in LVALUE the same
    value in RVALUE.  For the nonce, LVALUE must refer to a full array, not
    an array section.  */
 
index a3aa28b06dfa1b9f4335ba9c980f1ca7cf88b48d..cc948b13d8e08867101538b1fd3d4dd8d78f2d38 100644 (file)
@@ -399,7 +399,7 @@ match_old_style_init (const char *name)
 }
 
 /* Match the stuff following a DATA statement. If ERROR_FLAG is set,
-   we are matching a DATA stement and are therefore issuing an error
+   we are matching a DATA statement and are therefore issuing an error
    if we encounter something unexpected, if not, we're trying to match 
    an old-style intialization expression of the form INTEGER I /2/.   */
 
index 69b22dfc2e78a068ad4e71c2b2c5fd7ffe2210c1..107fb753f4c449330e2bf006369e7a5188b8f35a 100644 (file)
@@ -354,7 +354,7 @@ static GTY(()) struct binding_level *global_binding_level;
 /* Binding level structures are initialized by copying this one.  */
 static struct binding_level clear_binding_level = { NULL, NULL, NULL };
 \f
-/* Return non-zero if we are currently in the global binding level.  */
+/* Return nonzero if we are currently in the global binding level.  */
 
 int
 global_bindings_p (void)
index 0e1525263959ed3ec43afe8042952a53a9fb21ff..f33e79bac1b5cada7a98b2caabb9f59e899cde70 100644 (file)
@@ -974,7 +974,7 @@ typedef union
 gfc_simplify_f;
 
 /* Again like gfc_check_f, these specify the type of the resolution
-   function associated with an intrinsic. The fX are juse like in
+   function associated with an intrinsic. The fX are just like in
    gfc_check_f. f1m is used for MIN and MAX, s1 is used for abort().
    */
 
index f9628e8164fedde07f9074e167a81644d1d18830..b468c8e4be6cee6c6fd46bd52a11a040b9b86d42 100644 (file)
@@ -2102,7 +2102,7 @@ cleanup:
 
 
 /* Given a name, return a pointer to the common head structure,
-   creating it if it does not exist. If FROM_MODULE is non-zero, we
+   creating it if it does not exist. If FROM_MODULE is nonzero, we
    mangle the name so that it doesn't interfere with commons defined 
    in the using namespace.
    TODO: Add to global symbol tree.  */
index a8e6dcfeefdaa955f55b2ec9e46cca4ae02eb445..582bb338dc397b101185e3e742c31637f50b2bcc 100644 (file)
@@ -2245,7 +2245,7 @@ gfc_conv_ss_startstride (gfc_loopinfo * loop)
 }
 
 
-/* Return true if the two SS could be aliased, ie. both point to the same data
+/* Return true if the two SS could be aliased, i.e. both point to the same data
    object.  */
 /* TODO: resolve aliases based on frontend expressions.  */
 
@@ -3060,7 +3060,7 @@ gfc_trans_auto_array_allocation (tree decl, gfc_symbol * sym, tree fnbody)
       gfc_trans_init_string_length (sym->ts.cl, &block);
 
       /* Emit a DECL_EXPR for this variable, which will cause the
-        gimplifier to allocate stoage, and all that good stuff.  */
+        gimplifier to allocate storage, and all that good stuff.  */
       tmp = build1 (DECL_EXPR, TREE_TYPE (decl), decl);
       gfc_add_expr_to_block (&block, tmp);
     }
@@ -3572,7 +3572,7 @@ gfc_conv_expr_descriptor (gfc_se * se, gfc_expr * expr, gfc_ss * ss)
       /* A transformational function return value will be a temporary
         array descriptor.  We still need to go through the scalarizer
         to create the descriptor.  Elemental functions ar handled as
-        arbitary expressions, ie. copy to a temporary.  */
+        arbitary expressions, i.e. copy to a temporary.  */
       secss = ss;
       /* Look for the SS for this function.  */
       while (secss != gfc_ss_terminator
index f692f3eee22e8cddb34367f0cc03df694e5dc01a..3f83d2e9d263cbba58fcd2f78afa810d13f0a783 100644 (file)
@@ -136,7 +136,7 @@ get_segment_info (gfc_symbol * sym, HOST_WIDE_INT offset)
   /* Create the segment_info and fill it in.  */
   s = (segment_info *) gfc_getmem (sizeof (segment_info));
   s->sym = sym;
-  /* We will use this type when building the segment aggreagate type.  */
+  /* We will use this type when building the segment aggregate type.  */
   s->field = gfc_sym_type (sym);
   s->length = int_size_in_bytes (s->field);
   s->offset = offset;
index 52d6969c4f6d3858e89915d61c4ba504efebb2e1..358d4532233db16393db8732e2e3cab18ff6fe83 100644 (file)
@@ -1581,7 +1581,7 @@ gfc_trans_subcomponent_assign (tree dest, gfc_component * cm, gfc_expr * expr)
     }
   else if (expr->ts.type == BT_DERIVED)
     {
-      /* Nested dervived type.  */
+      /* Nested derived type.  */
       tmp = gfc_trans_structure_assign (dest, expr);
       gfc_add_expr_to_block (&block, tmp);
     }
@@ -1603,7 +1603,7 @@ gfc_trans_subcomponent_assign (tree dest, gfc_component * cm, gfc_expr * expr)
   return gfc_finish_block (&block);
 }
 
-/* Assign a derived type contructor to a variable.  */
+/* Assign a derived type constructor to a variable.  */
 
 static tree
 gfc_trans_structure_assign (tree dest, gfc_expr * expr)
index e986b5c1a0a73e0900556a6506644fd5b264d48f..18f9ecfc6193d4e1bfc8584efe5fd60d9be33d66 100644 (file)
@@ -1466,7 +1466,7 @@ gfc_conv_intrinsic_minmaxloc (gfc_se * se, gfc_expr * expr, int op)
   /* Initialize the position to the first element.  If the array has zero
      size we need to return zero.  Otherwise use the first element of the
      array, in case all elements are equal to the limit.
-     ie. pos = (ubound >= lbound) ? lbound, lbound - 1;  */
+     i.e. pos = (ubound >= lbound) ? lbound, lbound - 1;  */
   tmp = fold (build2 (MINUS_EXPR, gfc_array_index_type,
                      loop.from[0], gfc_index_one_node));
   cond = fold (build2 (GE_EXPR, boolean_type_node,
index 7c63c9985e744a2d9fc9f4d6346bf2e852eedc9d..2407dcf6a2c6b1b4e809ebbaa8f3e23c6a51d5b5 100644 (file)
@@ -524,7 +524,7 @@ exit_label:
 
    TODO: Large loop counts
    Does not work loop counts which do not fit into a signed integer kind,
-   ie. Does not work for loop counts > 2^31 for integer(kind=4) variables
+   i.e. Does not work for loop counts > 2^31 for integer(kind=4) variables
    We must support the full range.  */
 
 tree
@@ -1286,9 +1286,9 @@ gfc_trans_forall_loop (forall_info *forall_tmp, int nvar, tree body, int mask_fl
 
 
 /* Generate the body and loops according to MASK_FLAG and NEST_FLAG.
-   if MASK_FLAG is non-zero, the body is controlled by maskes in forall
+   if MASK_FLAG is nonzero, the body is controlled by maskes in forall
    nest, otherwise, the body is not controlled by maskes.
-   if NEST_FLAG is non-zero, generate loops for nested forall, otherwise,
+   if NEST_FLAG is nonzero, generate loops for nested forall, otherwise,
    only generate loops for the current forall level.  */
 
 static tree
index a33e717ceb98886c47d309cb211cdd3cfc0f6304..9dd8fe8a2d9ab5647561f5696cb57ccbc50a79fa 100644 (file)
@@ -944,7 +944,7 @@ gfc_get_nodesc_array_type (tree etype, gfc_array_spec * as, int packed)
   mpz_init (delta);
 
   /* We don't use build_array_type because this does not include include
-     lang-specific information (ie. the bounds of the array) when checking
+     lang-specific information (i.e. the bounds of the array) when checking
      for duplicates.  */
   type = make_node (ARRAY_TYPE);
 
index 9b7d355fb6e5496e360c0c8cf36c93e94c0ddb76..363589bc98e44c90e5703ec9dcf1f86b910afd8c 100644 (file)
@@ -271,7 +271,7 @@ void gfc_conv_string_parameter (gfc_se * se);
 /* Add an item to the end of TREE_LIST.  */
 tree gfc_chainon_list (tree, tree);
 
-/* When using the gfc_conv_* make sure you understand what they do, ie.
+/* When using the gfc_conv_* make sure you understand what they do, i.e.
    when a POST chain may be created, and what the retured expression may be
    used for.  Note that character strings have special handling.  This
    should not be a problem as most statements/operations only deal with