Early return in rewrite_commutative_reductions_out_of_ssa when flag_associative_math is not set.
2010-06-23 Sebastian Pop <sebastian.pop@amd.com> * graphite-sese-to-poly.c (rewrite_commutative_reductions_out_of_ssa): Early return in when flag_associative_math is not set. From-SVN: r163125
This commit is contained in:
parent
3d1254793b
commit
cc58897078
@ -1,3 +1,8 @@
|
||||
2010-08-02 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* graphite-sese-to-poly.c (rewrite_commutative_reductions_out_of_ssa):
|
||||
Early return in when flag_associative_math is not set.
|
||||
|
||||
2010-08-02 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* graphite-sese-to-poly.c (rewrite_phi_out_of_ssa): Always insert out
|
||||
|
@ -1,3 +1,8 @@
|
||||
2010-06-23 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* graphite-sese-to-poly.c (rewrite_commutative_reductions_out_of_ssa):
|
||||
Early return in when flag_associative_math is not set.
|
||||
|
||||
2010-06-23 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* gcc.dg/graphite/run-id-2.c: Call abort.
|
||||
|
@ -2829,6 +2829,9 @@ rewrite_commutative_reductions_out_of_ssa (sese region, sbitmap reductions)
|
||||
loop_iterator li;
|
||||
loop_p loop;
|
||||
|
||||
if (!flag_associative_math)
|
||||
return;
|
||||
|
||||
FOR_EACH_LOOP (li, loop, 0)
|
||||
if (loop_in_sese_p (loop, region))
|
||||
rewrite_commutative_reductions_out_of_ssa_loop (loop, reductions);
|
||||
|
Loading…
Reference in New Issue
Block a user