diff options
author | Markus Trippelsdorf <markus@trippelsdorf.de> | 2016-02-21 11:25:31 +0000 |
---|---|---|
committer | Markus Trippelsdorf <trippels@gcc.gnu.org> | 2016-02-21 11:25:31 +0000 |
commit | 30b3b0f84ab216e673ce0e0dc532777e49ba9971 (patch) | |
tree | 0d938ad08f0b4c4ca28144ca7c3737685b8e8fcf /gcc/tree-chkp.c | |
parent | ced0847e5b6ebcedc0f5bdc331fce1cbbefbcae0 (diff) | |
download | gcc-30b3b0f84ab216e673ce0e0dc532777e49ba9971.zip gcc-30b3b0f84ab216e673ce0e0dc532777e49ba9971.tar.gz gcc-30b3b0f84ab216e673ce0e0dc532777e49ba9971.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-chkp.c')
-rw-r--r-- | gcc/tree-chkp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-chkp.c b/gcc/tree-chkp.c index d3119c6..3fba12c 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) { |