From: Markus Trippelsdorf Date: Sun, 21 Feb 2016 11:25:31 +0000 (+0000) Subject: Properly initialize variable in tree-chkp.c (chkp_mark_invalid_bounds_walker) X-Git-Tag: basepoints/gcc-7~836 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30b3b0f84ab216e673ce0e0dc532777e49ba9971;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 92fdb85ed8e8..88f7a23f2dad 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-02-21 Markus Trippelsdorf + + * tree-chkp.c (chkp_mark_invalid_bounds_walker): Initialize + variable. + 2016-02-19 Jakub Jelinek PR driver/69805 diff --git a/gcc/tree-chkp.c b/gcc/tree-chkp.c index d3119c642f33..3fba12c2ae46 100644 --- a/gcc/tree-chkp.c +++ b/gcc/tree-chkp.c @@ -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) {