summaryrefslogtreecommitdiff
path: root/gcc/sched-rgn.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-08 17:01:17 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-08 17:01:17 +0000
commit9ca2c29a3651d0d31a0f4821744d20a91f787acd (patch)
tree9a89407bf0978b32e50e4f9c4dbb294a3c14cef7 /gcc/sched-rgn.c
parent179eba089745516ac9d2167f9d146f5c04fc6813 (diff)
downloadgcc-9ca2c29a3651d0d31a0f4821744d20a91f787acd.tar.gz
* builtins.c, config/arm/arm.c, config/i386/cygwin.h,
config/i386/i386.c, config/ia64/ia64.c, config/s390/fixdfdi.h, config/sh/sh.c, config/sh/sh.h, df-scan.c, except.c, haifa-sched.c, optabs.c, rtl.h, sched-deps.c, sched-int.h, sched-rgn.c, tree-inline.h, tree-ssa-dom.c, tree-ssa-loop-prefetch.c, tree-ssa-operands.c, tree-vect-patterns.c, tree-vrp.c: Fix comment typos. Follow spelling convensions. * config/ia64/ia64.opt, doc/contrib.texi, doc/invoke.texi, doc/passes.texi, doc/tm.texi, doc/tree-ssa.texi: Fix comment typos. Follow spelling conventions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112782 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-rgn.c')
-rw-r--r--gcc/sched-rgn.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/sched-rgn.c b/gcc/sched-rgn.c
index a4f037e5351..612623a14b8 100644
--- a/gcc/sched-rgn.c
+++ b/gcc/sched-rgn.c
@@ -1146,7 +1146,7 @@ extend_rgns (int *degree, int *idxp, sbitmap header, int *loop_hdr)
(We don't count single block regions here).
By default we do at most 2 iterations.
- This can be overriden with max-sched-extend-regions-iters parameter:
+ This can be overridden with max-sched-extend-regions-iters parameter:
0 - disable region extension,
N > 0 - do at most N iterations. */
@@ -2038,7 +2038,7 @@ can_schedule_ready_p (rtx insn)
return 1;
}
-/* Updates counter and other information. Splitted from can_schedule_ready_p ()
+/* Updates counter and other information. Split from can_schedule_ready_p ()
because when we schedule insn speculatively then insn passed to
can_schedule_ready_p () differs from the one passed to
begin_schedule_ready (). */
@@ -2752,7 +2752,7 @@ schedule_region (int rgn)
compute_dom_prob_ps (bb);
/* Cleanup ->aux used for EDGE_TO_BIT mapping. */
- /* We don't need them anymore. But we want to avoid dublication of
+ /* We don't need them anymore. But we want to avoid duplication of
aux fields in the newly created edges. */
FOR_EACH_BB (block)
{
@@ -2952,7 +2952,7 @@ schedule_insns (void)
init_regions ();
- /* EBB_HEAD is a region-scope sctructure. But we realloc it for
+ /* EBB_HEAD is a region-scope structure. But we realloc it for
each region to save time/memory/something else. */
ebb_head = 0;
@@ -2996,7 +2996,7 @@ schedule_insns (void)
liveness. */
for (rgn = 0; rgn < nr_regions; rgn++)
if (RGN_NR_BLOCKS (rgn) > 1
- /* Or the only block of this region has been splitted. */
+ /* Or the only block of this region has been split. */
|| RGN_HAS_REAL_EBB (rgn)
/* New blocks (e.g. recovery blocks) should be processed
as parts of large regions. */
@@ -3159,7 +3159,7 @@ add_block1 (basic_block bb, basic_block after)
/* ebb_head[i] - VALID. */
/* Source position: ebb_head[i]
- Destination posistion: ebb_head[i] + 1
+ Destination position: ebb_head[i] + 1
Last position:
RGN_BLOCKS (nr_regions) - 1
Number of elements to copy: (last_position) - (source_position) + 1