Use refs instead of values.
Passes bootstrap and regtest. gcc/ChangeLog: 2015-12-15 hiraditya <hiraditya@msn.com> * graphite-sese-to-poly.c (build_poly_sr): Use refs. From-SVN: r231707
This commit is contained in:
parent
560d18d3ed
commit
0ddb9c8d78
1 changed files with 2 additions and 2 deletions
|
@ -1056,8 +1056,8 @@ build_poly_sr (poly_bb_p pbb)
|
|||
{
|
||||
scop_p scop = PBB_SCOP (pbb);
|
||||
gimple_poly_bb_p gbb = PBB_BLACK_BOX (pbb);
|
||||
vec<scalar_use> reads = gbb->read_scalar_refs;
|
||||
vec<tree> writes = gbb->write_scalar_refs;
|
||||
vec<scalar_use> &reads = gbb->read_scalar_refs;
|
||||
vec<tree> &writes = gbb->write_scalar_refs;
|
||||
|
||||
isl_space *dc = isl_set_get_space (pbb->domain);
|
||||
int nb_out = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue