mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-25 20:31:30 +08:00
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
This commit is contained in:
parent
b6f517556c
commit
303d8f7792
@ -1,3 +1,8 @@
|
|||||||
|
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>
|
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.
|
||||||
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user