Commit 30b3b0f8 by Markus Trippelsdorf Committed by Markus Trippelsdorf

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
parent ced0847e
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> 2016-02-19 Jakub Jelinek <jakub@redhat.com>
PR driver/69805 PR driver/69805
......
...@@ -895,7 +895,7 @@ chkp_mark_invalid_bounds_walker (tree const &bounds, ...@@ -895,7 +895,7 @@ chkp_mark_invalid_bounds_walker (tree const &bounds,
static void static void
chkp_finish_incomplete_bounds (void) chkp_finish_incomplete_bounds (void)
{ {
bool found_valid; bool found_valid = true;
while (found_valid) while (found_valid)
{ {
......
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