From ad4db775e2c6fb42129048c0de213fa6f1cd98e3 Mon Sep 17 00:00:00 2001 From: Teresa Johnson Date: Wed, 15 May 2013 15:26:38 +0000 Subject: [PATCH] loop-unroll.c (report_unroll_peel): Check decision before emitting unroll/peel message. 2013-05-15 Teresa Johnson * loop-unroll.c (report_unroll_peel): Check decision before emitting unroll/peel message. From-SVN: r198936 --- gcc/ChangeLog | 5 +++++ gcc/loop-unroll.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb7da456..9eed4a9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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. (bb_reorder_complete): Ditto. * cfgcleanup.c (try_crossjump_to_edge): Check for has_bb_partition diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index 41d9e5f..d03dc3d 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; -- 2.7.4