diff mbox series

[1/5] PRU: Fix comment to avoid fall through warning

Message ID 20191013084454.13878-2-dimitar@dinux.eu
State New
Headers show
Series Assorted minor cleanups for PRU backend | expand

Commit Message

Dimitar Dimitrov Oct. 13, 2019, 8:44 a.m. UTC
gcc/ChangeLog:

2019-10-13  Dimitar Dimitrov  <dimitar@dinux.eu>

	* config/pru/pru.c (pru_print_operand): Fix comment.

Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>
---
 gcc/config/pru/pru.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/gcc/config/pru/pru.c b/gcc/config/pru/pru.c
index 16d1451262e..59b004b774f 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;