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:
parent
80400b0477
commit
d95fc58421
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue