summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-loop-unswitch.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2008-08-31 15:54:54 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2008-08-31 15:54:54 +0000
commit3893cc47fa491fae852c0a8c87cb997de866c3e4 (patch)
treec38c8aeaed04648e997fe6aa19893da9484d71c2 /gcc/tree-ssa-loop-unswitch.c
parentc01b75e75b0b9abd188c2c9feb1ae30ef6ed56a9 (diff)
downloadgcc-3893cc47fa491fae852c0a8c87cb997de866c3e4.tar.gz
* tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Check that
loop is optimized for speed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139834 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop-unswitch.c')
-rw-r--r--gcc/tree-ssa-loop-unswitch.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/tree-ssa-loop-unswitch.c b/gcc/tree-ssa-loop-unswitch.c
index 850270f49c0..26abed2dd8f 100644
--- a/gcc/tree-ssa-loop-unswitch.c
+++ b/gcc/tree-ssa-loop-unswitch.c
@@ -198,6 +198,14 @@ tree_unswitch_single_loop (struct loop *loop, int num)
return false;
}
+ /* Do not unswitch in cold regions. */
+ if (optimize_loop_for_size_p (loop))
+ {
+ if (dump_file && (dump_flags & TDF_DETAILS))
+ fprintf (dump_file, ";; Not unswitching cold loops\n");
+ return false;
+ }
+
/* The loop should not be too large, to limit code growth. */
if (tree_num_loop_insns (loop, &eni_size_weights)
> (unsigned) PARAM_VALUE (PARAM_MAX_UNSWITCH_INSNS))