2012-06-05 Richard Guenther <rguenther@suse.de>
* tree-vect-data-refs.c (vect_analyze_data_refs): Fix last
change.
From-SVN: r188243
+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
{
/* 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;
}
}