+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.
/* 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
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
}
-/* 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
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
}
/* 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
/* 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
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. */
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;
/* 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.