From: Dimitar Dimitrov Date: Sun, 15 Sep 2019 11:14:57 +0000 (+0300) Subject: PRU: Fix comment to avoid fall through warning X-Git-Tag: misc/first-auto-changelog~519 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d1ca857784315920338fee4659707a34c283bcb;p=thirdparty%2Fgcc.git PRU: Fix comment to avoid fall through warning gcc/ChangeLog: 2020-05-05 Dimitar Dimitrov * config/pru/pru.c (pru_print_operand): Fix fall through comment. Signed-off-by: Dimitar Dimitrov --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 92fdacff545d..83b390d38225 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2020-05-05 Dimitar Dimitrov + + * config/pru/pru.c (pru_print_operand): Fix fall through comment. + 2020-05-05 Uroš Bizjak * config/i386/i386.md (fixuns_truncsi2): Use diff --git a/gcc/config/pru/pru.c b/gcc/config/pru/pru.c index 37394c5e3b90..e20b41c6d1f3 100644 --- a/gcc/config/pru/pru.c +++ b/gcc/config/pru/pru.c @@ -1650,7 +1650,7 @@ pru_print_operand (FILE *file, rtx op, int letter) return; case 'Q': cond = swap_condition (cond); - /* Fall through to reverse. */ + /* Fall through. */ case 'R': fprintf (file, "%s", pru_comparison_str (reverse_condition (cond))); return;