Properly initialize variable in tree-chkp.c (chkp_mark_invalid_bounds_walker)

* tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
	variable.

From-SVN: r233593
This commit is contained in:
Markus Trippelsdorf 2016-02-21 11:25:31 +00:00 committed by Markus Trippelsdorf
parent ced0847e5b
commit 30b3b0f84a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2016-02-21 Markus Trippelsdorf <markus@trippelsdorf.de>
* tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize
variable.
2016-02-19 Jakub Jelinek <jakub@redhat.com>
PR driver/69805

View File

@ -895,7 +895,7 @@ chkp_mark_invalid_bounds_walker (tree const &bounds,
static void
chkp_finish_incomplete_bounds (void)
{
bool found_valid;
bool found_valid = true;
while (found_valid)
{