ifcvt.c, [...]: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 2 Jul 2004 00:51:01 +0000 (00:51 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 2 Jul 2004 00:51:01 +0000 (00:51 +0000)
* ifcvt.c, modulo-sched.c, tree-alias-common.c, tree-sra.c,
tree-ssa-copy.c, tree-ssa-dom.c, tree-ssa-pre.c: Fix comment
typos.

From-SVN: r84008

gcc/ChangeLog
gcc/ifcvt.c
gcc/modulo-sched.c
gcc/tree-alias-common.c
gcc/tree-sra.c
gcc/tree-ssa-copy.c
gcc/tree-ssa-dom.c
gcc/tree-ssa-pre.c

index 1628676a55759a51e9b711f19c8325a777ca73c2..9b3de527f4f810b413d1fb39e6e523ad79d6d391 100644 (file)
@@ -1,3 +1,9 @@
+2004-07-02  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * ifcvt.c, modulo-sched.c, tree-alias-common.c, tree-sra.c,
+       tree-ssa-copy.c, tree-ssa-dom.c, tree-ssa-pre.c: Fix comment
+       typos.
+
 2004-07-02  Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
 
        * gcc.c (STANDARD_STARTFILE_PREFIX_1): Define.
index a903237a7af207c94375d89498a2ac56b51e006f..bd4c30c00acbb624145bda8fb1757929e88e7a17 100644 (file)
@@ -699,7 +699,7 @@ end_ifcvt_sequence (struct noce_if_info *if_info)
 
   /* Make sure that all of the instructions emitted are recognizable,
      and that we haven't introduced a new jump instruction.
-     As an excersise for the reader, build a general mechanism that
+     As an exercise for the reader, build a general mechanism that
      allows proper placement of required clobbers.  */
   for (insn = seq; insn; insn = NEXT_INSN (insn))
     if (GET_CODE (insn) == JUMP_INSN
index c14b58f8699211c51d32da4c5f4d9516f538e597..d896757a57834f104b8ee6451fd0df97f280e5df 100644 (file)
@@ -77,7 +77,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
         here the insns are not scheduled monotonically top-down (nor bottom-
         up).
       3. If failed in scheduling all insns - bump II++ and try again, unless
-        II reaches an upper bound MaxII, inwhich case report failure.
+        II reaches an upper bound MaxII, in which case report failure.
    5. If we succeeded in scheduling the loop within II cycles, we now
       generate prolog and epilog, decrease the counter of the loop, and
       perform modulo variable expansion for live ranges that span more than
@@ -443,7 +443,7 @@ calculate_maxii (ddg_ptr g)
 }
 
 
-/* Given the partial schdule, generate register moves when the length
+/* Given the partial schedule, generate register moves when the length
    of the register live range is more than ii; the number of moves is
    determined according to the following equation:
                SCHED_TIME (use) - SCHED_TIME (def)   { 1 broken loop-carried
index 561feb5210a57bf2a989b3e57e066c23edd59880..790d70aa79f19d7594c67059672cb85ee0b0bcc3 100644 (file)
@@ -533,7 +533,7 @@ find_func_aliases (tree stp)
          else if (TREE_CODE (op1) == CALL_EXPR)
            {
              /* Heap assignment. These are __attribute__ malloc or
-                something, i'll deal with it later.  */
+                something, I'll deal with it later.  */
              if (0)
                {}
              else
index 2642dfea7edf1cefeff07a5967ca48abe0d319f3..44f06503aaf7ae599fbea9c2aa25e5b15a2d106c 100644 (file)
@@ -1630,7 +1630,7 @@ sra_replace (block_stmt_iterator *bsi, tree list)
 }
 
 /* Scalarize a USE.  To recap, this is either a simple reference to ELT,
-   if elt is scalar, or some ocurrence of ELT that requires a complete
+   if elt is scalar, or some occurrence of ELT that requires a complete
    aggregate.  IS_OUTPUT is true if ELT is being modified.  */
 
 static void
index 12aaff81d94c55a3c5a02f28317e43b39304233a..1f87c1be4bff770f983d88864fdf939664303365 100644 (file)
@@ -56,7 +56,7 @@ Boston, MA 02111-1307, USA.  */
 
 
 /* Given two SSA_NAMEs, replace the annotations for the one referred to by OP 
-   with VAR's annmoptations.
+   with VAR's annotations.
 
    If OP is a pointer, copy the memory tag used originally by OP into
    VAR.  This is needed in cases where VAR had never been dereferenced in the
index 36b513b557186f957b1999e6461d0098e9364c75..49759978326b6dbf85d933c465cc7a1bf553fcaa 100644 (file)
@@ -96,7 +96,7 @@ static bitmap nonzero_vars;
 static bool cfg_altered;
 
 /* Bitmap of blocks that have had EH statements cleaned.  We should
-   remove thier dead edges eventually.  */
+   remove their dead edges eventually.  */
 static bitmap need_eh_cleanup;
 
 /* Statistics for dominator optimizations.  */
index 712c3464078f6c080388b7b700c3c9e4c54aa2db..e64a477ded80b0ec0fdc92a9633a1beac0016ee8 100644 (file)
@@ -234,7 +234,7 @@ typedef struct bb_value_sets
      basic block.  */
   value_set_t phi_gen;
 
-  /* The TMP_GEN set, which represents results/temporaries genererated
+  /* The TMP_GEN set, which represents results/temporaries generated
      in a basic block. IE the LHS of an expression.  */
   value_set_t tmp_gen;
 
@@ -1499,7 +1499,7 @@ add_to_sets (tree var, tree expr, vuse_optype vuses, value_set_t s1,
 
 
 /* Given a unary or binary expression EXPR, create and return a new
-   expresion with the same structure as EXPR but with its operands
+   expression with the same structure as EXPR but with its operands
    replaced with the value handles of each of the operands of EXPR.
    Insert EXPR's operands into the EXP_GEN set for BLOCK.