Commit d401de95 by Dorit Naishlos Committed by Dorit Nuzman

tree-vect-analyze.c (vect_analyze_loop_form): Call split_loop_exit_edge instead…

tree-vect-analyze.c (vect_analyze_loop_form): Call split_loop_exit_edge instead of loop_split_edge_with.

        * tree-vect-analyze.c (vect_analyze_loop_form): Call
        split_loop_exit_edge instead of loop_split_edge_with.

From-SVN: r97702
parent bd024745
2005-04-06 Dorit Naishlos <dorit@il.ibm.com>
* tree-vect-analyze.c (vect_analyze_loop_form): Call
split_loop_exit_edge instead of loop_split_edge_with.
2005-04-06 Paolo Bonzini <bonzini@gnu.org>
* config/rs6000/altivec.md (UNSPEC_VSLW, UNSPEC_SUBS,
......
......@@ -2437,7 +2437,7 @@ vect_analyze_loop_form (struct loop *loop)
edge e = loop->single_exit;
if (!(e->flags & EDGE_ABNORMAL))
{
loop_split_edge_with (e, NULL);
split_loop_exit_edge (e);
if (vect_print_dump_info (REPORT_DETAILS, loop_loc))
fprintf (vect_dump, "split exit edge.");
}
......
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