Commit db87b56d by Bingfeng Mei Committed by Bingfeng Mei

modulo-sched.c (sms_schedule): stage_count <= 1 as correct comparison to skip unprofitable schedule

2009-07-16  Bingfeng Mei  <bmei@broadcom.com>

	* modulo-sched.c (sms_schedule): stage_count <= 1 as correct comparison
        to skip unprofitable schedule

From-SVN: r149712
parent a4452ba2
2009-07-16 Bingfeng Mei <bmei@broadcom.com>
* modulo-sched.c (sms_schedule): stage_count <= 1 as correct comparison
to skip unprofitable schedule
2009-07-16 Simon Baldwin <simonb@google.com>
* gcc.c (option_map): New flag -no-canonical-prefixes.
......
......@@ -1157,12 +1157,14 @@ sms_schedule (void)
ps = sms_schedule_by_order (g, mii, maxii, node_order);
if (ps)
if (ps){
stage_count = PS_STAGE_COUNT (ps);
gcc_assert(stage_count >= 1);
}
/* Stage count of 1 means that there is no interleaving between
iterations, let the scheduling passes do the job. */
if (stage_count < 1
if (stage_count <= 1
|| (count_init && (loop_count <= stage_count))
|| (flag_branch_probabilities && (trip_count <= stage_count)))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment