Correct ordering of args for cmov insn.
[deliverable/binutils-gdb.git] / gprof / cg_arcs.c
index b63102948b036f5cf9534ad16f958458d78b3e84..f341a8f799a76d9595dfb76828f6d00995d7bde6 100644 (file)
@@ -84,6 +84,7 @@ DEFUN (arc_add, (parent, child, count),
       return;
     }
   arc = (Arc *) xmalloc (sizeof (*arc));
+  memset (arc, 0, sizeof (*arc));
   arc->parent = parent;
   arc->child = child;
   arc->count = count;
@@ -576,8 +577,7 @@ DEFUN_VOID (cg_assemble)
   Sym *parent, **time_sorted_syms, **top_sorted_syms;
   long index;
   Arc *arc;
-  extern void find_call PARAMS ((Sym * parent,
-                                bfd_vma p_lowpc, bfd_vma p_highpc));
+
   /*
    * initialize various things:
    *      zero out child times.
This page took 0.025192 seconds and 4 git commands to generate.