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]

Adjust fall through comments in aarch64-simd.md


It's unclear whether we'll handle /* Else, fall through.  */ in the nearest
future, so I'll just change it to a recognizable format instead.

When this is in, I can remove the recently added -Wno-error lines in Makefile.in.

Bootstrapped on aarch64-linux.  I'm checking this in.

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

	* config/aarch64/aarch64-simd.md: Adjust fall through comments.

diff --git gcc/config/aarch64/aarch64-simd.md gcc/config/aarch64/aarch64-simd.md
index f942a54..9ce7f00 100644
--- gcc/config/aarch64/aarch64-simd.md
+++ gcc/config/aarch64/aarch64-simd.md
@@ -2443,7 +2443,7 @@
 	  comparison = gen_aarch64_cmlt<mode>;
 	  break;
 	}
-      /* Else, fall through.  */
+      /* Fall through.  */
     case UNGE:
       std::swap (operands[2], operands[3]);
       /* Fall through.  */
@@ -2457,7 +2457,7 @@
 	  comparison = gen_aarch64_cmle<mode>;
 	  break;
 	}
-      /* Else, fall through.  */
+      /* Fall through.  */
     case UNGT:
       std::swap (operands[2], operands[3]);
       /* Fall through.  */

	Marek


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