Commit aba09491 by Alexandre Oliva Committed by Alexandre Oliva

re PR debug/42897 (yet another ice in verify_ssa)

PR debug/42897
* tree-vect-loop.c (vect_transform_loop): Kill out-of-loop debug
uses of relevant DEFs that are dead outside the loop too.

From-SVN: r157258
parent 60d7a09b
2010-03-06 Alexandre Oliva <aoliva@redhat.com>
PR debug/42897
* tree-vect-loop.c (vect_transform_loop): Kill out-of-loop debug
uses of relevant DEFs that are dead outside the loop too.
2010-03-06 Alexandre Oliva <aoliva@redhat.com> 2010-03-06 Alexandre Oliva <aoliva@redhat.com>
* var-tracking.c (dataflow_set_merge): Swap src and src2. * var-tracking.c (dataflow_set_merge): Swap src and src2.
......
...@@ -4236,13 +4236,12 @@ vect_transform_loop (loop_vec_info loop_vinfo) ...@@ -4236,13 +4236,12 @@ vect_transform_loop (loop_vec_info loop_vinfo)
if (!stmt_info) if (!stmt_info)
continue; continue;
if (MAY_HAVE_DEBUG_STMTS && !STMT_VINFO_LIVE_P (stmt_info))
vect_loop_kill_debug_uses (loop, phi);
if (!STMT_VINFO_RELEVANT_P (stmt_info) if (!STMT_VINFO_RELEVANT_P (stmt_info)
&& !STMT_VINFO_LIVE_P (stmt_info)) && !STMT_VINFO_LIVE_P (stmt_info))
{ continue;
if (MAY_HAVE_DEBUG_STMTS)
vect_loop_kill_debug_uses (loop, phi);
continue;
}
if ((TYPE_VECTOR_SUBPARTS (STMT_VINFO_VECTYPE (stmt_info)) if ((TYPE_VECTOR_SUBPARTS (STMT_VINFO_VECTYPE (stmt_info))
!= (unsigned HOST_WIDE_INT) vectorization_factor) != (unsigned HOST_WIDE_INT) vectorization_factor)
...@@ -4279,11 +4278,12 @@ vect_transform_loop (loop_vec_info loop_vinfo) ...@@ -4279,11 +4278,12 @@ vect_transform_loop (loop_vec_info loop_vinfo)
continue; continue;
} }
if (MAY_HAVE_DEBUG_STMTS && !STMT_VINFO_LIVE_P (stmt_info))
vect_loop_kill_debug_uses (loop, stmt);
if (!STMT_VINFO_RELEVANT_P (stmt_info) if (!STMT_VINFO_RELEVANT_P (stmt_info)
&& !STMT_VINFO_LIVE_P (stmt_info)) && !STMT_VINFO_LIVE_P (stmt_info))
{ {
if (MAY_HAVE_DEBUG_STMTS)
vect_loop_kill_debug_uses (loop, stmt);
gsi_next (&si); gsi_next (&si);
continue; continue;
} }
......
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