* config/nvptx/nvptx.md (call_operation): Remove unused variables.
authorNathan Sidwell <nathan@codesourcery.com>
Fri, 26 Jun 2015 12:33:33 +0000 (12:33 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Fri, 26 Jun 2015 12:33:33 +0000 (12:33 +0000)
From-SVN: r225009

gcc/ChangeLog
gcc/config/nvptx/nvptx.md

index 862bfe2fdc7103d88bd506073171c990d3bdb506..798126fea63674e7fc498886eef2e537565c45c0 100644 (file)
@@ -1,3 +1,7 @@
+2015-06-26  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * config/nvptx/nvptx.md (call_operation): Remove unused variables.
+
 2015-06-26  Bin Cheng  <bin.cheng@arm.com>
 
        PR bootstrap/66638
index a4df53b91e7e232f64bad23294e1e6e93c8c89b7..7c2cb9c15bc6ab99e621b105edbe2d8b4ef9fa91 100644 (file)
 (define_predicate "call_operation"
   (match_code "parallel")
 {
-  unsigned i;
+  int i;
 
   for (i = 1; i < XVECLEN (op, 0); i++)
     {
       rtx elt = XVECEXP (op, 0, i);
-      enum machine_mode mode;
-      unsigned regno;
 
       if (GET_CODE (elt) != USE
           || GET_CODE (XEXP (elt, 0)) != REG
           || XEXP (elt, 0) == frame_pointer_rtx
           || XEXP (elt, 0) == arg_pointer_rtx
           || XEXP (elt, 0) == stack_pointer_rtx)
-
         return false;
     }
   return true;