Commit 303d8f77 by Richard Biener Committed by Richard Biener

tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Initialize ng to silence…

tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Initialize ng to silence error with release checking bootstrap.

2018-10-25  Richard Biener  <rguenther@suse.de>

	* tree-vect-data-refs.c (vect_analyze_data_ref_accesses):
	Initialize ng to silence error with release checking bootstrap.

From-SVN: r265491
parent b6f51755
2018-10-25 Richard Biener <rguenther@suse.de> 2018-10-25 Richard Biener <rguenther@suse.de>
* tree-vect-data-refs.c (vect_analyze_data_ref_accesses):
Initialize ng to silence error with release checking bootstrap.
2018-10-25 Richard Biener <rguenther@suse.de>
* tree-if-conv.c: Include tree-ssa-sccvn.h. * tree-if-conv.c: Include tree-ssa-sccvn.h.
(tree_if_conversion): Run CSE on the if-converted loop body. (tree_if_conversion): Run CSE on the if-converted loop body.
...@@ -3001,7 +3001,7 @@ vect_analyze_data_ref_accesses (vec_info *vinfo) ...@@ -3001,7 +3001,7 @@ vect_analyze_data_ref_accesses (vec_info *vinfo)
Note this is a heuristic but one with the property that *it Note this is a heuristic but one with the property that *it
is fixed up completely. */ is fixed up completely. */
g = grp; g = grp;
stmt_vec_info newgroup = NULL, ng; stmt_vec_info newgroup = NULL, ng = grp;
while ((next = DR_GROUP_NEXT_ELEMENT (g))) while ((next = DR_GROUP_NEXT_ELEMENT (g)))
{ {
if (gimple_uid (STMT_VINFO_STMT (next)) >= first_duplicate) if (gimple_uid (STMT_VINFO_STMT (next)) >= first_duplicate)
......
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