diff options
author | Dimitar Dimitrov <dimitar@dinux.eu> | 2019-09-15 14:14:57 +0300 |
---|---|---|
committer | Dimitar Dimitrov <dimitar@dinux.eu> | 2020-05-05 20:42:56 +0300 |
commit | 3d1ca857784315920338fee4659707a34c283bcb (patch) | |
tree | 03d9969fc17a4ad30e45ac41443b0c67baa56291 /gcc/config/pru | |
parent | 2d7941da28e6b1cd7507ed96bb722b1e3206c172 (diff) | |
download | gcc-3d1ca857784315920338fee4659707a34c283bcb.zip gcc-3d1ca857784315920338fee4659707a34c283bcb.tar.gz gcc-3d1ca857784315920338fee4659707a34c283bcb.tar.bz2 |
PRU: Fix comment to avoid fall through warning
gcc/ChangeLog:
2020-05-05 Dimitar Dimitrov <dimitar@dinux.eu>
* config/pru/pru.c (pru_print_operand): Fix fall through comment.
Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>
Diffstat (limited to 'gcc/config/pru')
-rw-r--r-- | gcc/config/pru/pru.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pru/pru.c b/gcc/config/pru/pru.c index 37394c5..e20b41c 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; |