Remove dead code in print_z_candidates.
authorDominik Vogt <vogt@linux.vnet.ibm.com>
Tue, 12 May 2015 11:27:52 +0000 (11:27 +0000)
committerAndreas Krebbel <krebbel@gcc.gnu.org>
Tue, 12 May 2015 11:27:52 +0000 (11:27 +0000)
2015-05-12  Dominik Vogt  <vogt@linux.vnet.ibm.com>

* call.c (print_z_candidates): Remove dead code.

From-SVN: r223057

gcc/ChangeLog
gcc/cp/call.c

index 06618fa7311080bbe67bb97f78dead5c210842cd..5313de1a1b17bd236fbbab7cffcf8dc5ca9d24ae 100644 (file)
@@ -1,3 +1,7 @@
+2015-05-12  Dominik Vogt  <vogt@linux.vnet.ibm.com>
+
+       * call.c (print_z_candidates): Remove dead code.
+
 2015-05-12  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
 
        * config/s390/2827.md: Split zEC12_simple into zEC12_simple_int
index b77f69a267e1b0542c44effcbc52685215ef8213..07ccea99971e0ae17d92dc7991549ec78185785f 100644 (file)
@@ -3436,7 +3436,6 @@ print_z_candidates (location_t loc, struct z_candidate *candidates)
 {
   struct z_candidate *cand1;
   struct z_candidate **cand2;
-  int n_candidates;
 
   if (!candidates)
     return;
@@ -3478,9 +3477,6 @@ print_z_candidates (location_t loc, struct z_candidate *candidates)
        }
     }
 
-  for (n_candidates = 0, cand1 = candidates; cand1; cand1 = cand1->next)
-    n_candidates++;
-
   for (; candidates; candidates = candidates->next)
     print_z_candidate (loc, "candidate:", candidates);
 }