From 3d1ca857784315920338fee4659707a34c283bcb Mon Sep 17 00:00:00 2001 From: Dimitar Dimitrov Date: Sun, 15 Sep 2019 14:14:57 +0300 Subject: [PATCH] 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 --- gcc/ChangeLog | 4 ++++ gcc/config/pru/pru.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.30.2