diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 08:39:54 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-16 08:39:54 -0400 |
commit | 9faa82d8c081b9e38370b5a913825111d2166de6 (patch) | |
tree | 1e50640eecb618d0b3fa87607094528acb0add62 /gcc/unroll.c | |
parent | ddd5a7c1808995545ad5befaa7320135e60b5d38 (diff) | |
download | gcc-9faa82d8c081b9e38370b5a913825111d2166de6.zip gcc-9faa82d8c081b9e38370b5a913825111d2166de6.tar.gz gcc-9faa82d8c081b9e38370b5a913825111d2166de6.tar.bz2 |
Fix typos in comments.
From-SVN: r9712
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 161cdd2..a08cfd1 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -1585,7 +1585,7 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration, dest_reg = XEXP (tv->dest_reg, 0); /* Check for shared address givs, and avoid - incrementing the shared psuedo reg more than + incrementing the shared pseudo reg more than once. */ if (! tv->same_insn) { @@ -1797,8 +1797,8 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration, { rtx jmp; rtx lab = gen_label_rtx (); - /* Can't do it by reversing the jump (probably becasue we - couln't reverse the conditions), so emit a new + /* Can't do it by reversing the jump (probably because we + couldn't reverse the conditions), so emit a new jump_insn after COPY, and redirect the jump around that. */ jmp = emit_jump_insn_after (gen_jump (exit_label), copy); @@ -2670,7 +2670,7 @@ find_splittable_givs (bl, unroll_type, loop_start, loop_end, increment, following cse pass. */ /* As a special case, if we have multiple identical address givs - within a single instruction, then we do use a single psuedo + within a single instruction, then we do use a single pseudo reg for both. This is necessary in case one is a match_dup of the other. */ @@ -3376,7 +3376,7 @@ loop_iterations (loop_start, loop_end) return tempu / i + ((tempu % i) != 0); } -/* Replace uses of split bivs with their split psuedo register. This is +/* Replace uses of split bivs with their split pseudo register. This is for original instructions which remain after loop unrolling without copying. */ |