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
This commit is contained in:
Aditya Kumar 2015-09-28 19:19:47 +00:00 committed by Sebastian Pop
parent 80400b0477
commit d95fc58421
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2015-09-28 Aditya Kumar <aditya.k7@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>

View file

@ -778,7 +778,7 @@ invariant_in_sese_p_rec (tree t, sese region)
return false;
/* VDEF is variant when it is in the region. */
if (tree vdef = gimple_vdef (stmt))
if (gimple_vdef (stmt))
return false;
/* A VUSE may or may not be variant following the VDEFs. */