This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix fall through comment in ia64/


Someone would hit this sooner or later.

Applying to trunk.

2016-09-27  Marek Polacek  <polacek@redhat.com>

	* config/ia64/ia64.c (ia64_print_operand): Adjust fall through
	comment.

diff --git gcc/config/ia64/ia64.c gcc/config/ia64/ia64.c
index 573872e..d32823a 100644
--- gcc/config/ia64/ia64.c
+++ gcc/config/ia64/ia64.c
@@ -5550,7 +5550,7 @@ ia64_print_operand (FILE * file, rtx x, int code)
     case POST_DEC:
     case POST_MODIFY:
       x = XEXP (x, 0);
-      /* ... fall through ...  */
+      /* fall through */
 
     case REG:
       fputs (reg_names [REGNO (x)], file);

	Marek


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]