gas: Add md_generic_table_relax_frag
[deliverable/binutils-gdb.git] / gprof / cg_dfn.c
index 6ded5564f0a29b1110677e19011ecf33afcaae4e..1da4c66b84f215b80774f5ed12ba5d5d289ab015 100644 (file)
@@ -92,7 +92,7 @@ find_cycle (Sym *child)
   Sym *head = 0;
   Sym *tail;
   int cycle_top;
-  int index;
+  int cycle_index;
 
   for (cycle_top = dfn_depth; cycle_top > 0; --cycle_top)
     {
@@ -169,9 +169,9 @@ find_cycle (Sym *child)
               print_name (head);
               printf ("\n"));
        }
-      for (index = cycle_top + 1; index <= dfn_depth; ++index)
+      for (cycle_index = cycle_top + 1; cycle_index <= dfn_depth; ++cycle_index)
        {
-         child = dfn_stack[index].sym;
+         child = dfn_stack[cycle_index].sym;
          if (child->cg.cyc.head == child)
            {
              /*
This page took 0.028618 seconds and 4 git commands to generate.