From: Marek Polacek Date: Wed, 21 Sep 2016 11:08:11 +0000 (+0000) Subject: gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length): Add falls through... X-Git-Tag: basepoints/gcc-8~4523 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26e7820fcc2ed5a4792b2b12ef94b7ee5341f703;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1862dabe5b58..86b0802ddd34 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-09-21 Marek Polacek + + * gimple-ssa-sprintf.c (pass_sprintf_length::compute_format_length): + Add falls through comment. + 2016-09-21 Richard Biener * 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 0afcf68c7bbb..dddb026b27f0 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;