* fold-const.c: Fix comment typos.
* gcse.c: Likewise.
* reload1.c: Likewise.
From-SVN: r55876
+2002-07-30 Kazu Hirata <kazu@cs.umass.edu>
+
+ * fold-const.c: Fix comment typos.
+ * gcse.c: Likewise.
+ * reload1.c: Likewise.
+
2002-07-29 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.md: Disallow CCEQ compare with crnor/crnot
int width;
tree t;
- /* Tree EXP must have a integral type. */
+ /* Tree EXP must have an integral type. */
t = TREE_TYPE (exp);
if (! INTEGRAL_TYPE_P (t))
return NULL_TREE;
dominance_info dominators;
/* ??? We could compute post dominators and run this algorithm in
- reverse to to perform tail merging, doing so would probably be
+ reverse to perform tail merging, doing so would probably be
more effective than the tail merging code in jump.c.
It's unclear if tail merging could be run in parallel with
abort ();
}
/* We resolve conflicts with remaining reloads of the same type by
- excluding the intervals of of reload registers by them from the
+ excluding the intervals of reload registers by them from the
interval of freed reload registers. Since we only keep track of
one set of interval bounds, we might have to exclude somewhat
more than what would be necessary if we used a HARD_REG_SET here.