diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1992-08-11 12:56:20 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1992-08-11 12:56:20 -0700 |
commit | b43e4bcbcf3f09f898a1c140543fd61aa1340c89 (patch) | |
tree | 7b799d3fe09f5aab13dbd1e040332ac598e1f73e | |
parent | 94dc8b56700585cf60b0e31c9f6c8d7ef3521b49 (diff) | |
download | gcc-b43e4bcbcf3f09f898a1c140543fd61aa1340c89.zip gcc-b43e4bcbcf3f09f898a1c140543fd61aa1340c89.tar.gz gcc-b43e4bcbcf3f09f898a1c140543fd61aa1340c89.tar.bz2 |
(unroll_loop): Delete call to unroll_block_trees.
From-SVN: r1802
-rw-r--r-- | gcc/unroll.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 18ab396..0be4bb9 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -1135,19 +1135,6 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, not taken. */ if (exit_label) emit_label_after (exit_label, loop_end); - - /* If debugging, we must replicate the tree nodes corresponding to the blocks - inside the loop, so that the original one to one mapping will remain. */ - - if (write_symbols != NO_DEBUG) - { - int copies = unroll_number; - - if (loop_preconditioned) - copies += unroll_number - 1; - - unroll_block_trees (uid_loop_num[INSN_UID (loop_start)], copies); - } } /* Return true if the loop can be safely, and profitably, preconditioned |