diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb7da4561734..9eed4a9e63dd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-05-15 Teresa Johnson + + * loop-unroll.c (report_unroll_peel): Check decision before + emitting unroll/peel message. + 2013-05-15 Teresa Johnson * function.h (has_bb_partition): New rtl_data flag. diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index 41d9e5f0fadb..d03dc3d40296 100644 --- a/gcc/loop-unroll.c +++ b/gcc/loop-unroll.c @@ -212,6 +212,9 @@ report_unroll_peel (struct loop *loop, location_t locus) int niters = 0; int report_flags = MSG_OPTIMIZED_LOCATIONS | TDF_RTL | TDF_DETAILS; + if (loop->lpt_decision.decision == LPT_NONE) + return; + if (!dump_enabled_p ()) return;