On Wed, 2016-11-02 at 14:24 +0100, Jakub Jelinek wrote:
> On Wed, Nov 02, 2016 at 02:19:33PM +0100, Mark Wielaard wrote:
> > libiberty/ChangeLog:
> >
> > * cplus-dem.c (demangle_signature): Move fall through comment.
> > (demangle_fund_type): Add fall through comment between 'G' and 'I'.
> > * hashtab.c (iterative_hash): Add fall through comments.
> > * regex.c (regex_compile): Add Fall through comment after '+'/'?'.
> > (byte_re_match_2_internal): Add Fall through comment after jump_n.
> > Change "Note fall through" to "Fall through".
> > (common_op_match_null_string_p): Return false after set_number_at
> > instead of fall through.
>
> LGTM, except for:
>
> > --- a/libiberty/cplus-dem.c
> > +++ b/libiberty/cplus-dem.c
> > @@ -1658,8 +1658,8 @@ demangle_signature (struct work_stuff *work,
> > break;
> > }
> > else
> > - /* fall through */
> > {;}
> > + /* fall through */
>
> I think you should just remove the else and {;} and just have fallthrough
> comment indented where else used to be.
Thanks. Pushed with that change.
Cheers,
Mark