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
This commit is contained in:
Richard Guenther 2012-06-05 14:30:35 +00:00 committed by Richard Biener
parent d86d21192b
commit d4d5e1468f
2 changed files with 9 additions and 1 deletions

View File

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

View File

@ -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;
}
}