Commit 20936cee by Revital Eres Committed by Revital Eres

SMS: Add missing free operation in mark_loop_unsched

From-SVN: r182271
parent 407a5d6a
2011-12-13 Revital Eres <revital.eres@linaro.org>
* modulo-sched.c (mark_loop_unsched): Free bbs.
2011-12-12 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/51495
......@@ -1204,6 +1204,8 @@ mark_loop_unsched (struct loop *loop)
for (i = 0; i < loop->num_nodes; i++)
bbs[i]->flags |= BB_DISABLE_SCHEDULE;
free (bbs);
}
/* Return true if all the BBs of the loop are empty except the
......
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