From: Dimitar Dimitrov Date: Sun, 15 Sep 2019 11:14:57 +0000 (+0300) Subject: PRU: Fix comment to avoid fall through warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d1ca857784315920338fee4659707a34c283bcb;p=gcc.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 92fdacff545..83b390d3822 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 37394c5e3b9..e20b41c6d1f 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;