microblaze.c (tls_mentioned_p): Avoid fallthru.
authorJeff Law <law@redhat.com>
Wed, 26 Oct 2016 17:00:18 +0000 (11:00 -0600)
committerJeff Law <law@gcc.gnu.org>
Wed, 26 Oct 2016 17:00:18 +0000 (11:00 -0600)
* config/microblaze/microblaze.c (tls_mentioned_p): Avoid
fallthru.

From-SVN: r241587

gcc/ChangeLog
gcc/config/microblaze/microblaze.c

index 106a3a380da74d0132e74fdc9138c42a867fcddc..dc4fd27d801ed102aedb0cccaa3b4ce51dd81fc7 100644 (file)
@@ -41,6 +41,9 @@
 
 2016-10-26  Jeff Law  <law@redhat.com>
 
+       * config/microblaze/microblaze.c (tls_mentioned_p): Avoid
+       fallthru.
+
        * config/arc/arc.c (acr_print_operand): Adjust fallthru comment.
        (check_if_valid_sleep_operand): Add missing fallthru comment.
        (arc_register_move_cost): Increase buffer size.
index 4b7a9ba88c5881cf07ad5c4d09daae209c7ed1d5..be90796b6ab9cb01d951dcd01ee581cfc885938d 100644 (file)
@@ -543,6 +543,7 @@ tls_mentioned_p (rtx x)
       case UNSPEC:
         if (XINT (x, 1) == UNSPEC_TLS)
           return 1;
+       return 0;
 
       default:
         return 0;