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
This commit is contained in:
Dorit Naishlos 2005-04-06 07:59:01 +00:00 committed by Dorit Nuzman
parent bd02474522
commit d401de95b9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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,

View File

@ -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.");
}