diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-04-08 17:01:17 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-04-08 17:01:17 +0000 |
commit | 917f1b7ea3e4737fccda44b8dfb5c868b3d5fed4 (patch) | |
tree | 9a89407bf0978b32e50e4f9c4dbb294a3c14cef7 /gcc/sched-rgn.c | |
parent | b82feea52fface9bc8d2addb726704da49b1d972 (diff) | |
download | gcc-917f1b7ea3e4737fccda44b8dfb5c868b3d5fed4.zip gcc-917f1b7ea3e4737fccda44b8dfb5c868b3d5fed4.tar.gz gcc-917f1b7ea3e4737fccda44b8dfb5c868b3d5fed4.tar.bz2 |
builtins.c, [...]: Fix comment typos.
* 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.
From-SVN: r112782
Diffstat (limited to 'gcc/sched-rgn.c')
-rw-r--r-- | gcc/sched-rgn.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/sched-rgn.c b/gcc/sched-rgn.c index a4f037e..612623a 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 |