microblaze.c: fix warnings
authorDavid Malcolm <dmalcolm@redhat.com>
Thu, 2 Jun 2016 19:27:10 +0000 (19:27 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Thu, 2 Jun 2016 19:27:10 +0000 (19:27 +0000)
gcc/ChangeLog:
* config/microblaze/microblaze.c (get_branch_target): Add return
NULL_RTX for the non-CALL_P case.
(insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
(insert_wic): Remove unused local "j".

From-SVN: r237044

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

index 2dbeee5fb94553e0eb4345fb0ccf813853119049..2a0951bfe96aa3268c18e0866e582c7289a7196b 100644 (file)
@@ -1,3 +1,10 @@
+2016-06-02  David Malcolm  <dmalcolm@redhat.com>
+
+       * config/microblaze/microblaze.c (get_branch_target): Add return
+       NULL_RTX for the non-CALL_P case.
+       (insert_wic_for_ilb_runout): Remove unused local "wic_addr1".
+       (insert_wic): Remove unused local "j".
+
 2016-06-02  Martin Liska  <mliska@suse.cz>
 
        * predict.def: Fix typo in PRED_FORTRAN_FAIL_IO display name.
index baff67a89c9f76f8295ffc626926c398b78f130c..8f4768ec54c6e70a5a6519c7b300377c9b858cc1 100644 (file)
@@ -3624,6 +3624,8 @@ get_branch_target (rtx branch)
         abort ();
       return XEXP (XEXP (call, 0), 0);
     }
+
+  return NULL_RTX;
 }
 
 /* Heuristics to identify where to insert at the
@@ -3650,7 +3652,6 @@ insert_wic_for_ilb_runout (rtx_insn *first)
   int addr_offset = 0;
   int length;
   int wic_addr0 = 128 * 4;
-  int wic_addr1 = 128 * 4;
 
   int first_addr = INSN_ADDRESSES (INSN_UID (first));
 
@@ -3693,7 +3694,7 @@ static void
 insert_wic (void)
 {
   rtx_insn *insn;
-  int i, j;
+  int i;
   basic_block bb, prev = 0;
   rtx branch_target = 0;