diff options
Diffstat (limited to 'gcc/loop-unroll.c')
-rw-r--r-- | gcc/loop-unroll.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index 41d9e5f0fad..d03dc3d4029 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; |