c-common.c: Fix comment typos.
authorKazu Hirata <kazu@hxi.com>
Tue, 9 Oct 2001 06:03:16 +0000 (06:03 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 9 Oct 2001 06:03:16 +0000 (06:03 +0000)
* c-common.c: Fix comment typos.
* cfgrtl.c: Likewise.
* collect2.c: Likewise.
* cpplex.c: Likewise.
* doloop.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* global.c: Likewise.
* ifcvt.c: Likewise.
* loop.c: Likewise.
* optabs.c: Likewise.
* protoize.c: Likewise.
* regclass.c: Likewise.
* reorg.c: Likewise.
* rtl.h: Likewise.
* stmt.c: Likewise.
* tree.h: Likewise.
* doc/cpp.texi: Likewise.
* doc/c-tree.texi: Likewise.
* doc/extend.texi: Likewise.
* doc/invoke.texi: Likewise.
* doc/objc.texi: Likewise.
* doc/tm.texi: Likewise.

From-SVN: r46114

29 files changed:
gcc/ChangeLog
gcc/c-common.c
gcc/cfgrtl.c
gcc/collect2.c
gcc/cpplex.c
gcc/doc/c-tree.texi
gcc/doc/cpp.texi
gcc/doc/extend.texi
gcc/doc/invoke.texi
gcc/doc/objc.texi
gcc/doc/tm.texi
gcc/doloop.c
gcc/dwarf2out.c
gcc/dwarfout.c
gcc/expr.c
gcc/fold-const.c
gcc/gcc.c
gcc/gcov.c
gcc/gcse.c
gcc/global.c
gcc/ifcvt.c
gcc/loop.c
gcc/optabs.c
gcc/protoize.c
gcc/regclass.c
gcc/reorg.c
gcc/rtl.h
gcc/stmt.c
gcc/tree.h

index db70f0df3745b440e539b092f634ae87b1e063a6..ded5bb7cadb64867a058654214138ea10881f658 100644 (file)
@@ -1,3 +1,34 @@
+2001-10-09  Kazu Hirata  <kazu@hxi.com>
+
+       * c-common.c: Fix comment typos.
+       * cfgrtl.c: Likewise.
+       * collect2.c: Likewise.
+       * cpplex.c: Likewise.
+       * doloop.c: Likewise.
+       * dwarf2out.c: Likewise.
+       * dwarfout.c: Likewise.
+       * expr.c: Likewise.
+       * fold-const.c: Likewise.
+       * gcc.c: Likewise.
+       * gcov.c: Likewise.
+       * gcse.c: Likewise.
+       * global.c: Likewise.
+       * ifcvt.c: Likewise.
+       * loop.c: Likewise.
+       * optabs.c: Likewise.
+       * protoize.c: Likewise.
+       * regclass.c: Likewise.
+       * reorg.c: Likewise.
+       * rtl.h: Likewise.
+       * stmt.c: Likewise.
+       * tree.h: Likewise.
+       * doc/cpp.texi: Likewise.
+       * doc/c-tree.texi: Likewise.
+       * doc/extend.texi: Likewise.
+       * doc/invoke.texi: Likewise.
+       * doc/objc.texi: Likewise.
+       * doc/tm.texi: Likewise.
+
 2001-10-08  Richard Henderson  <rth@redhat.com>
 
        * varasm.c (set_named_section_flags): Initialize "declared".
index 73bfcf0ea2a51f6d638ff978585c25eaa4271238..5ad4d92f8325091c367b320b2532e3b45013b98e 100644 (file)
@@ -1969,7 +1969,7 @@ truthvalue_conversion (expr)
       return real_zerop (expr) ? boolean_false_node : boolean_true_node;
 
     case ADDR_EXPR:
-      /* If we are taking the address of a external decl, it might be zero
+      /* If we are taking the address of an external decl, it might be zero
         if it is weak, so we cannot optimize.  */
       if (DECL_P (TREE_OPERAND (expr, 0))
          && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
index f5e678545b7b660ef76ac7d8beea9a6e0116e17c..c075731d1ebe609383106b4ee3f0a746db6954b7 100644 (file)
@@ -874,7 +874,7 @@ redirect_edge_and_branch (e, target)
   return true;
 }
 
-/* Like force_nonfallthru bellow, but additionally performs redirection
+/* Like force_nonfallthru below, but additionally performs redirection
    Used by redirect_edge_and_branch_force.  */
 
 static basic_block
index 7b5078cf1f30c0dab9b5b0803b4e3d0697d6eb4a..297f769a6fd8455c21a51c94d42c2db68d0ace03 100644 (file)
@@ -2321,7 +2321,7 @@ libcompare (d1, d2)
       /* It has a valid numeric extension, prefer this one.  */
       if (*e1 == '.' && e1[1] && ISDIGIT (e1[1]))
        return 1;
-      /* It has a invalid numeric extension, must prefer the other one.  */
+      /* It has an invalid numeric extension, must prefer the other one.  */
       else
        return -1;
     }
@@ -2330,7 +2330,7 @@ libcompare (d1, d2)
       /* It has a valid numeric extension, prefer this one.  */
       if (*e2 == '.' && e2[1] && ISDIGIT (e2[1]))
        return -1;
-      /* It has a invalid numeric extension, must prefer the other one.  */
+      /* It has an invalid numeric extension, must prefer the other one.  */
       else
        return 1;
     }
index 02bf7c6648660801825c876a2c29491300f86f3d..3ea32612d24c7992d176b4a4b0113248bcc50a4b 100644 (file)
@@ -575,7 +575,7 @@ parse_identifier_slow (pfile, cur)
   /* Remember the next character.  */
   buffer->read_ahead = c;
 
-  /* $ is not a identifier character in the standard, but is commonly
+  /* $ is not an identifier character in the standard, but is commonly
      accepted as an extension.  Don't warn about it in skipped
      conditional blocks.  */
   if (saw_dollar && CPP_PEDANTIC (pfile) && ! pfile->state.skipping)
@@ -2126,7 +2126,7 @@ _cpp_get_buff (pfile, min_size)
   return result;
 }
 
-/* Creates a new buffer with enough space to hold the the uncommitted
+/* Creates a new buffer with enough space to hold the uncommitted
    remaining bytes of BUFF, and at least MIN_EXTRA more bytes.  Copies
    the excess bytes to the new buffer.  Chains the new buffer after
    BUFF, and returns the new buffer.  */
@@ -2144,7 +2144,7 @@ _cpp_append_extend_buff (pfile, buff, min_extra)
   return new_buff;
 }
 
-/* Creates a new buffer with enough space to hold the the uncommitted
+/* Creates a new buffer with enough space to hold the uncommitted
    remaining bytes of the buffer pointed to by BUFF, and at least
    MIN_EXTRA more bytes.  Copies the excess bytes to the new buffer.
    Chains the new buffer before the buffer pointed to by BUFF, and
index e36090abcdd202b320c5dec6b28df2f351c722c5..a5c5fecd892f8ab2d4166977df47c735d9c8ac07 100644 (file)
@@ -1423,7 +1423,7 @@ fields.
 @item CASE_LABEL
 
 Use to represent a @code{case} label, range of @code{case} labels, or a
-@code{default} label.  If @code{CASE_LOW} is @code{NULL_TREE}, then this is a a
+@code{default} label.  If @code{CASE_LOW} is @code{NULL_TREE}, then this is a
 @code{default} label.  Otherwise, if @code{CASE_HIGH} is @code{NULL_TREE}, then
 this is an ordinary @code{case} label.  In this case, @code{CASE_LOW} is
 an expression giving the value of the label.  Both @code{CASE_LOW} and
@@ -1800,7 +1800,7 @@ as a signed or unsigned quantity depending on the type of the constant.
 In general, the expression given above will overflow, so it should not
 be used to calculate the value of the constant.
 
-The variable @code{integer_zero_node} is a integer constant with value
+The variable @code{integer_zero_node} is an integer constant with value
 zero.  Similarly, @code{integer_one_node} is an integer constant with
 value one.  The @code{size_zero_node} and @code{size_one_node} variables
 are analogous, but have type @code{size_t} rather than @code{int}.
index 1d7dfd623e1378bd4aeb838b1c70a08aa0ec4071..a9736cdd4543c7bf9180122723da275afb67f664 100644 (file)
@@ -32,7 +32,7 @@ or Back-Cover Texts.
 
 @macro covertexts
 This manual contains no Invariant Sections.  The Front-Cover Texts are
-(a) (see below), and the the Back-Cover Texts are (b) (see below).
+(a) (see below), and the Back-Cover Texts are (b) (see below).
 
 (a) The FSF's Front-Cover Text is:
 
@@ -1956,7 +1956,7 @@ expands to nothing, but in the @code{m68k-coff} environment it expands
 to a single @samp{%}.
 
 @item __USER_LABEL_PREFIX__
-This macro expands to a single token which is the the prefix applied to
+This macro expands to a single token which is the prefix applied to
 user labels (symbols visible to C code) in assembly.  For example, in
 the @code{m68k-aout} environment it expands to an @samp{_}, but in the
 @code{m68k-coff} environment it expands to nothing.
@@ -3610,7 +3610,7 @@ simultaneously true.
 
 @cindex assertions, cancelling
 @findex #unassert
-Assertions can be cancelled with the the @samp{#unassert} directive.  It
+Assertions can be cancelled with the @samp{#unassert} directive.  It
 has the same syntax as @samp{#assert}.  In that form it cancels only the
 answer which was specified on the @samp{#unassert} line; other answers
 for that predicate remain true.  You can cancel an entire predicate by
index be659203b152b18f90f071300250a963cc9fc217..41588b0d619acead8c1824866e4e44f3b169c08e 100644 (file)
@@ -2523,7 +2523,7 @@ to relate to the structure, union or enumerated type defined, not to any
 enclosing declaration the type specifier appears in, and the type
 defined is not complete until after the attribute specifiers.
 @c Otherwise, there would be the following problems: a shift/reduce
-@c conflict between attributes binding the the struct/union/enum and
+@c conflict between attributes binding the struct/union/enum and
 @c binding to the list of specifiers/qualifiers; and "aligned"
 @c attributes could use sizeof for the structure, but the size could be
 @c changed later by "packed" attributes.
index 66c0816d260e9e186bf707471f8a4d7a154acfd5..0588c1a5b8f85d78a14cfb4606ddaf18f7a85e23 100644 (file)
@@ -1669,7 +1669,7 @@ behaviour.
 @item -fdiagnostics-show-location=every-line
 Only meaningful in line-wrapping mode.  Instructs the diagnostic
 messages reporter to emit the same source location information (as
-prefix) for physical lines that result from the process of breaking a
+prefix) for physical lines that result from the process of breaking
 a message which is too long to fit on a single line.
 
 @end table
@@ -3791,7 +3791,7 @@ that contain more that a certain number of instructions.  You can
 control some of these constants on the command-line using the
 @option{--param} option.
 
-In each case, the @var{value} is a integer.  The allowable choices for
+In each case, the @var{value} is an integer.  The allowable choices for
 @var{name} are given in the following table:
 
 @table @gcctabopt
index f23e3d0b12a85a38a35381c1a11f4a32c2198da5..d3fd775e2c0cfcea92976bb4f3add80afe973703 100644 (file)
@@ -251,7 +251,7 @@ The non-atomic types are encoded as follows:
 @end multitable
 
 Here are some types and their encodings, as they are generated by the
-compiler on a i386 machine:
+compiler on an i386 machine:
 
 @sp 1
 
index 193a060c72fca203d464cde284c6ead5ffa1d248..32229d64c9fe234175d6ba5e8a08946bc94b0978 100644 (file)
@@ -8776,7 +8776,7 @@ built-in function.
 @findex MD_CAN_REDIRECT_BRANCH
 @item MD_CAN_REDIRECT_BRANCH(@var{branch1}, @var{branch2})
 
-Take a branch insn in @var{branch1} and a another in @var{branch2}.
+Take a branch insn in @var{branch1} and another in @var{branch2}.
 Return true if redirecting @var{branch1} to the destination of
 @var{branch2} is possible.
 
@@ -8788,7 +8788,7 @@ may in turn cause a branch offset to overflow.
 @item ALLOCATE_INITIAL_VALUE(@var{hard_reg})
 
 When the initial value of a hard register has been copied in a pseudo
-register, it is often not necessary to actually allocate a another register
+register, it is often not necessary to actually allocate another register
 to this pseudo register, because the original hard register or a stack slot
 it has been saved into can be used.  @code{ALLOCATE_INITIAL_VALUE}, if
 defined, is called at the start of register allocation once for each
index 283080bb4295872c6f3c7bb83f10fee547787d59..849f30e2ef7a3eedfec824b08238eed33b0586af 100644 (file)
@@ -141,7 +141,7 @@ doloop_condition_get (pattern)
 /* Return an estimate of the maximum number of loop iterations for the
    loop specified by LOOP or zero if the loop is not normal.
    MODE is the mode of the iteration count and NONNEG is non-zero if
-   the the iteration count has been proved to be non-negative.  */
+   the iteration count has been proved to be non-negative.  */
 static unsigned HOST_WIDE_INT
 doloop_iterations_max (loop_info, mode, nonneg)
      const struct loop_info *loop_info;
@@ -336,7 +336,7 @@ doloop_valid_p (loop, jump_insn)
 
   /* There is no guarantee that a NE loop will terminate if the
      absolute increment is not unity.  ??? We could compute this
-     condition at run-time and have a additional jump around the loop
+     condition at run-time and have an additional jump around the loop
      to ensure an infinite loop.  */
   if (loop_info->comparison_code == NE
       && INTVAL (loop_info->increment) != -1
index 8857d9b365841bfa76290f1359b88a46f50be5de..c7d17ec0ccdadb55a9153d5a81428bacd0f2832f 100644 (file)
@@ -8737,7 +8737,7 @@ add_bound_info (subrange_die, bound_attr, bound)
          they have to deal with empty upper bounds location descriptions
          anyway in order to be able to deal with incomplete array types.
          Of course an intelligent debugger (GDB?)  should be able to
-         comprehend that a missing upper bound specification in a array
+         comprehend that a missing upper bound specification in an array
          type used for a storage class `auto' local array variable
          indicates that the upper bound is both unknown (at compile- time)
          and unknowable (at run-time) due to optimization.
@@ -9833,7 +9833,7 @@ gen_subprogram_die (decl, context_die)
             instance, if it has duplicate function definitions.  Ideally,
             we should detect this case and ignore it.  For now, if we have
             already reported an error, any error at all, then assume that
-            we got here because of a input error, not a dwarf2 bug.  */
+            we got here because of an input error, not a dwarf2 bug.  */
          if (errorcount)
            return;
          abort ();
@@ -10000,7 +10000,7 @@ gen_subprogram_die (decl, context_die)
              gen_decl_die (parm, subr_die);
          }
 
-      /* Decide whether we need a unspecified_parameters DIE at the end.
+      /* Decide whether we need an unspecified_parameters DIE at the end.
          There are 2 more cases to do this for: 1) the ansi ... declaration -
          this is detectable when the end of the arg list is not a
          void_type_node 2) an unprototyped function declaration (not a
index d51d5757ff4244992e0a66c6dad3f9fd846809a7..abc24bd4e58b14c7a5902de48de41a0bd160fb58 100644 (file)
@@ -5428,7 +5428,7 @@ output_decl (decl, containing_scope)
          output_pending_types_for_scope (decl);
 
          /*
-           Decide whether we need a unspecified_parameters DIE at the end.
+           Decide whether we need an unspecified_parameters DIE at the end.
            There are 2 more cases to do this for:
            1) the ansi ... declaration - this is detectable when the end
                of the arg list is not a void_type_node
index 130b3e1195d7df2f6d98cce6131284e3ce87a1c9..a62010390b724a116859b45d165274940e9b5ae3 100644 (file)
@@ -2683,7 +2683,7 @@ clear_storage (object, size, align)
          /* We need to make an argument list for the function call.
 
             memset has three arguments, the first is a void * addresses, the
-            second a integer with the initialization value, the last is a
+            second an integer with the initialization value, the last is a
             size_t byte count for the copy.  */
          arg_list
            = build_tree_list (NULL_TREE,
@@ -3125,7 +3125,7 @@ push_block (size, extra, below)
 }
 
 
-/* Return an rtx for the address of the beginning of a as-if-it-was-pushed
+/* Return an rtx for the address of the beginning of an as-if-it-was-pushed
    block of SIZE bytes.  */
 
 static rtx
@@ -5836,7 +5836,7 @@ safe_from_p (x, exp, top_p)
          return safe_from_p (x, TREE_OPERAND (exp, 1), 0);
 
        case METHOD_CALL_EXPR:
-         /* This takes a rtx argument, but shouldn't appear here.  */
+         /* This takes an rtx argument, but shouldn't appear here.  */
          abort ();
 
        default:
index 484d9c639701a19342fe35c657f29a120116b12d..37a0219e1fd05ce195e10c350c8c7d592a1105e9 100644 (file)
@@ -517,7 +517,7 @@ rrotate_double (l1, h1, count, prec, lv, hv)
    CODE is a tree code for a kind of division, one of
    TRUNC_DIV_EXPR, FLOOR_DIV_EXPR, CEIL_DIV_EXPR, ROUND_DIV_EXPR
    or EXACT_DIV_EXPR
-   It controls how the quotient is rounded to a integer.
+   It controls how the quotient is rounded to an integer.
    Return nonzero if the operation overflows.
    UNS nonzero says do unsigned division.  */
 
index 321ec1d0b214ff588129bab84d26001fe858b2ef..d265fae9555f0a50cffee25261436d735d5f79da 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -5884,7 +5884,7 @@ main (argc, argv)
 
       /* We do not exit here.  Instead we have created a fake input file
         called 'help-dummy' which needs to be compiled, and we pass this
-        on the the various sub-processes, along with the --help switch.  */
+        on the various sub-processes, along with the --help switch.  */
     }
 
   if (verbose_flag)
index db51a8b6022463d7250e00ab60cf3516467e6259..dbafe81ace0482081cb27e1de1b9e1d5fa63f99a 100644 (file)
@@ -477,7 +477,7 @@ init_arc (arcptr, source, target, bb_graph)
 }
 
 
-/* Reverse the arcs on a arc list.  */
+/* Reverse the arcs on an arc list.  */
 
 static struct adj_list *
 reverse_arcs (arcptr)
index 9a468542dddc6a0e330066e5d53b7c23f3c07bb4..f1d40e40dec8ac79f8f30019d93654c2c81aff96 100644 (file)
@@ -5424,7 +5424,7 @@ delete_null_pointer_checks (f)
       /* LAST_INSN is a conditional jump.  Get its condition.  */
       condition = get_condition (last_insn, &earliest);
 
-      /* If we were unable to get the condition, or it is not a equality
+      /* If we were unable to get the condition, or it is not an equality
         comparison against zero then there's nothing we can do.  */
       if (!condition
          || (GET_CODE (condition) != NE && GET_CODE (condition) != EQ)
index f811f22b9c6998d8fb9c6dba2e7abce1237b66f6..31d264d42cc92bb163e2ed842de7ec6341954f74 100644 (file)
@@ -1212,7 +1212,7 @@ find_reg (num, losers, alt_regs_p, accept_call_clobbered, retrying)
            {
              /* We explicitly evaluate the divide results into temporary
                 variables so as to avoid excess precision problems that occur
-                on a i386-unknown-sysv4.2 (unixware) host.  */
+                on an i386-unknown-sysv4.2 (unixware) host.  */
                 
              double tmp1 = ((double) local_reg_freq[regno]
                            / local_reg_live_length[regno]);
index fcbc645d32b24e69c7ff1bd518b7cb57f1f01e44..da9c003682e372dbe09017b22b9307f55ed37b3d 100644 (file)
@@ -560,7 +560,7 @@ noce_emit_store_flag (if_info, x, reversep, normalize)
                           || code == GEU || code == GTU), normalize);
 }
 
-/* Emit instruction to move a rtx into STRICT_LOW_PART.  */
+/* Emit instruction to move an rtx into STRICT_LOW_PART.  */
 static void
 noce_emit_move_insn (x, y)
      rtx x, y;
index d38741a031ba11e4dd8fff9f30435367585fcaf0..ab90395708d55437ca6a2d83ac7541a24eccb6ce 100644 (file)
@@ -2725,7 +2725,7 @@ find_and_verify_loops (f, loops)
                        /* If no suitable BARRIER was found, create a suitable
                           one before TARGET.  Since TARGET is a fall through
                           path, we'll need to insert an jump around our block
-                          and a add a BARRIER before TARGET.
+                          and add a BARRIER before TARGET.
 
                           This creates an extra unconditional jump outside
                           the loop.  However, the benefits of removing rarely
index 5b47c13a316f7af3a997b0bb7710564aa0452431..2d5e68d2662e7897550d6d1e7579ce15499c068b 100644 (file)
@@ -3220,7 +3220,7 @@ prepare_cmp_insn (px, py, pcomparison, size, pmode, punsignedp, align,
 
 /* Before emitting an insn with code ICODE, make sure that X, which is going
    to be used for operand OPNUM of the insn, is converted from mode MODE to
-   WIDER_MODE (UNSIGNEDP determines whether it is a unsigned conversion), and
+   WIDER_MODE (UNSIGNEDP determines whether it is an unsigned conversion), and
    that it is accepted by the operand predicate.  Return the new value.  */
 
 rtx
index 33388cf477b80307fe39d5947abc182094e93ec5..de626f7bd96bf94b5f17c6a4435ff16d54c8029d 100644 (file)
@@ -1135,7 +1135,7 @@ unexpand_if_needed (aux_info_line)
               strcpy (copy_p, unexp_p->contracted);
               copy_p += size;
 
-              /* Assume the there will not be another replacement required
+              /* Assume that there will not be another replacement required
                  within the text just replaced.  */
 
               s += len;
index 61119f3bf7beba2ac1999b6f222221de21f9a90f..140a207a2763cb6f934696c70287eedf9a0ebc9f 100644 (file)
@@ -1304,7 +1304,7 @@ regclass (f, nregs, dump)
          for (class = (int) ALL_REGS - 1; class > 0; class--)
            {
              /* Ignore classes that are too small for this operand or
-                invalid for a operand that was auto-incremented.  */
+                invalid for an operand that was auto-incremented.  */
              if (!contains_reg_of_mode [class][PSEUDO_REGNO_MODE (i)]
 #ifdef FORBIDDEN_INC_DEC_CLASSES
                  || (in_inc_dec[i] && forbidden_inc_dec_class[class])
index 986ef671eca898f69673276f619d69d6045c19f0..97a8354ab69e55d7795d32a1591e6d5187433476 100644 (file)
@@ -3105,7 +3105,7 @@ relax_delay_slots (first)
          if (target_label != JUMP_LABEL (insn))
            reorg_redirect_jump (insn, target_label);
 
-         /* See if this jump branches around a unconditional jump.
+         /* See if this jump branches around an unconditional jump.
             If so, invert this jump and point it to the target of the
             second jump.  */
          if (next && GET_CODE (next) == JUMP_INSN
index 983036fae1b31505c3012f09889f405eba377d35..22f673e23f8767904c9e0f005f713c1a09da78d9 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -615,7 +615,7 @@ extern const char * const reg_note_name[];
    NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes.  (We avoid lots of casts
    between ints and pointers if we use a different macro for the block number.)
    The NOTE_INSN_RANGE_{START,END} and NOTE_INSN_LIVE notes record their
-   information as a rtx in the field.  */
+   information as an rtx in the field.  */
 
 #define NOTE_SOURCE_FILE(INSN)         XCSTR(INSN, 3, NOTE)
 #define NOTE_BLOCK(INSN)       XCTREE(INSN, 3, NOTE)
index ddfbf24e0d7da441d7bbcafc35a9e3ace0bb1182..631f689f9d57e432a5b37d7d70b0e04694798240 100644 (file)
@@ -2784,7 +2784,7 @@ expand_exit_loop_if_false (whichloop, cond)
   if (whichloop == 0)
     return 0;
   /* In order to handle fixups, we actually create a conditional jump
-     around a unconditional branch to exit the loop.  If fixups are
+     around an unconditional branch to exit the loop.  If fixups are
      necessary, they go before the unconditional branch.  */
 
   do_jump (cond, NULL_RTX, label);
@@ -5308,7 +5308,7 @@ expand_end_case (orig_index)
                }
 
              /* For constant index expressions we need only
-                issue a unconditional branch to the appropriate
+                issue an unconditional branch to the appropriate
                 target code.  The job of removing any unreachable
                 code is left to the optimisation phase if the
                 "-O" option is specified.  */
index 56ed9aba6179272138a9e5920273508c804addb0..717b0739fa9068832c4ddec3bc9fe86fcb076b6e 100644 (file)
@@ -1070,7 +1070,7 @@ struct tree_block
    If set in a SET_TYPE, indicates a bitstring type. */
 #define TYPE_STRING_FLAG(NODE) (TYPE_CHECK (NODE)->type.string_flag)
 
-/* If non-NULL, this is a upper bound of the size (in bytes) of an
+/* If non-NULL, this is an upper bound of the size (in bytes) of an
    object of the given ARRAY_TYPE.  This allows temporaries to be allocated. */
 #define TYPE_ARRAY_MAX_SIZE(ARRAY_TYPE) TYPE_MAX_VALUE (ARRAY_TYPE)