Commit d95fc584 by Aditya Kumar Committed by Sebastian Pop

fix bootstrap due to unused variable warning

  * sese.c (invariant_in_sese_p_rec): Remove unused variable.

Co-Authored-By: Sebastian Pop <s.pop@samsung.com>

From-SVN: r228218
parent 80400b04
2015-09-28 Aditya Kumar <aditya.k7@samsung.com> 2015-09-28 Aditya Kumar <aditya.k7@samsung.com>
Sebastian Pop <s.pop@samsung.com> Sebastian Pop <s.pop@samsung.com>
* sese.c (invariant_in_sese_p_rec): Remove unused variable.
2015-09-28 Aditya Kumar <aditya.k7@samsung.com>
Sebastian Pop <s.pop@samsung.com>
* graphite-optimize-isl.c (optimize_isl): Use ISL_SCHEDULE_FUSE_MAX. * graphite-optimize-isl.c (optimize_isl): Use ISL_SCHEDULE_FUSE_MAX.
* graphite-scop-detection.c (struct sese_l): New type. * graphite-scop-detection.c (struct sese_l): New type.
(get_entry_bb): API for getting entry bb of SESE. (get_entry_bb): API for getting entry bb of SESE.
...@@ -778,7 +778,7 @@ invariant_in_sese_p_rec (tree t, sese region) ...@@ -778,7 +778,7 @@ invariant_in_sese_p_rec (tree t, sese region)
return false; return false;
/* VDEF is variant when it is in the region. */ /* VDEF is variant when it is in the region. */
if (tree vdef = gimple_vdef (stmt)) if (gimple_vdef (stmt))
return false; return false;
/* A VUSE may or may not be variant following the VDEFs. */ /* A VUSE may or may not be variant following the VDEFs. */
......
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