Commit d4d5e146 by Richard Guenther Committed by Richard Biener

tree-vect-data-refs.c (vect_analyze_data_refs): Fix last change.

2012-06-05  Richard Guenther  <rguenther@suse.de>

	* tree-vect-data-refs.c (vect_analyze_data_refs): Fix last
	change.

From-SVN: r188243
parent d86d2119
2012-06-05 Richard Guenther <rguenther@suse.de>
* tree-vect-data-refs.c (vect_analyze_data_refs): Fix last
change.
2012-06-05 H.J. Lu <hongjiu.lu@intel.com>
PR target/53575
......
......@@ -2855,7 +2855,10 @@ vect_analyze_data_refs (loop_vec_info loop_vinfo,
{
/* Mark the rest of the basic-block as unvectorizable. */
for (; !gsi_end_p (gsi); gsi_next (&gsi))
STMT_VINFO_VECTORIZABLE (vinfo_for_stmt (stmt)) = false;
{
stmt = gsi_stmt (gsi);
STMT_VINFO_VECTORIZABLE (vinfo_for_stmt (stmt)) = false;
}
break;
}
}
......
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