From: trippels 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-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33b4e12b7b5428a4428a1655ecbfff291afde1ed;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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233593 138bc75d-0d04-0410-961f-82ee72b054a4 --- 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) {