diff options
author | Richard Henderson <rth@gcc.gnu.org> | 1999-10-24 13:25:28 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-24 13:25:28 -0700 |
commit | 0bae01847ee3cf7a686537bea18b45c24b07ab2e (patch) | |
tree | bd9f2911a23b9ee17c41dfd3b88a10a627cf8183 /gcc/unroll.c | |
parent | ac6067399cdc9569760e681aa421fe37c2576905 (diff) | |
download | gcc-0bae01847ee3cf7a686537bea18b45c24b07ab2e.zip gcc-0bae01847ee3cf7a686537bea18b45c24b07ab2e.tar.gz gcc-0bae01847ee3cf7a686537bea18b45c24b07ab2e.tar.bz2 |
Revert unintended change to copy_loop_body.
From-SVN: r30148
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index d766b74..3f82e652 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -1962,8 +1962,7 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration, /* Make split induction variable constants `permanent' since we know there are no backward branches across iteration variable settings which would invalidate this. */ - if (dest_reg_was_split - && (GET_CODE (pattern) == SET || GET_CODE (pattern) == USE)) + if (dest_reg_was_split) { int regno = REGNO (SET_DEST (pattern)); |