diff options
author | Marek Polacek <polacek@redhat.com> | 2016-09-21 11:08:11 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2016-09-21 11:08:11 +0000 |
commit | 26e7820fcc2ed5a4792b2b12ef94b7ee5341f703 (patch) | |
tree | 279f1f59262ecbf9d86614dd8913169600618fd0 | |
parent | 377e973c625ed19677597537fa00021038de1012 (diff) | |
download | gcc-26e7820fcc2ed5a4792b2b12ef94b7ee5341f703.zip gcc-26e7820fcc2ed5a4792b2b12ef94b7ee5341f703.tar.gz gcc-26e7820fcc2ed5a4792b2b12ef94b7ee5341f703.tar.bz2 |
gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length): Add falls through comment.
* gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length):
Add falls through comment.
From-SVN: r240311
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gimple-ssa-sprintf.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1862dab..86b0802 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-09-21 Marek Polacek <polacek@redhat.com> + + * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length): + Add falls through comment. + 2016-09-21 Richard Biener <rguenther@suse.de> * dwarf2out.c (remove_child_with_prev): Clear child->die_sib. diff --git a/gcc/gimple-ssa-sprintf.c b/gcc/gimple-ssa-sprintf.c index 0afcf68..dddb026 100644 --- a/gcc/gimple-ssa-sprintf.c +++ b/gcc/gimple-ssa-sprintf.c @@ -2260,6 +2260,7 @@ pass_sprintf_length::compute_format_length (const call_info &info, case '\0': --pf; res->bounded = false; + /* FALLTHRU */ case '%': spec.fmtfunc = format_percent; break; |