diff options
author | Dorit Naishlos <dorit@il.ibm.com> | 2005-04-06 07:59:01 +0000 |
---|---|---|
committer | Dorit Nuzman <dorit@gcc.gnu.org> | 2005-04-06 07:59:01 +0000 |
commit | d401de95b968c94ac051d2232d24fca0fa9fc2d0 (patch) | |
tree | c0e6a1e2effef3891c29cc6b5e6b6d038c6eb69e /gcc/tree-vect-analyze.c | |
parent | bd02474522b96d3f2efc6cf57a7dd8dcd9466aad (diff) | |
download | gcc-d401de95b968c94ac051d2232d24fca0fa9fc2d0.zip gcc-d401de95b968c94ac051d2232d24fca0fa9fc2d0.tar.gz gcc-d401de95b968c94ac051d2232d24fca0fa9fc2d0.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-vect-analyze.c')
-rw-r--r-- | gcc/tree-vect-analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-analyze.c b/gcc/tree-vect-analyze.c index 9ee81c8..3c55fd4 100644 --- a/gcc/tree-vect-analyze.c +++ b/gcc/tree-vect-analyze.c @@ -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."); } |