From: Kazu Hirata Date: Fri, 2 Jul 2004 00:51:01 +0000 (+0000) Subject: ifcvt.c, [...]: Fix comment typos. X-Git-Tag: releases/gcc-4.0.0~7120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6fe65dc61754f3dc25a8757a1955b61e6374f51;p=thirdparty%2Fgcc.git ifcvt.c, [...]: Fix comment typos. * 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1628676a5575..9b3de527f4f8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-07-02 Kazu Hirata + + * 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 * gcc.c (STANDARD_STARTFILE_PREFIX_1): Define. diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index a903237a7af2..bd4c30c00acb 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -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 diff --git a/gcc/modulo-sched.c b/gcc/modulo-sched.c index c14b58f86992..d896757a5783 100644 --- a/gcc/modulo-sched.c +++ b/gcc/modulo-sched.c @@ -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 diff --git a/gcc/tree-alias-common.c b/gcc/tree-alias-common.c index 561feb5210a5..790d70aa79f1 100644 --- a/gcc/tree-alias-common.c +++ b/gcc/tree-alias-common.c @@ -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 diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c index 2642dfea7edf..44f06503aaf7 100644 --- a/gcc/tree-sra.c +++ b/gcc/tree-sra.c @@ -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 diff --git a/gcc/tree-ssa-copy.c b/gcc/tree-ssa-copy.c index 12aaff81d94c..1f87c1be4bff 100644 --- a/gcc/tree-ssa-copy.c +++ b/gcc/tree-ssa-copy.c @@ -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 diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 36b513b55718..49759978326b 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -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. */ diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index 712c3464078f..e64a477ded80 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -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.