summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils/gprof/cg_arcs.h
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-06-10 10:55:58 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-06-10 10:55:58 +0000
commita7e831079363e3bb45f3172f6e59ba48e335682b (patch)
treeee4324eac9a9d66f189fab60498ec42b8226b7fc /gnu/usr.bin/binutils/gprof/cg_arcs.h
parent467cb0a471d13c5186a6ee166e60b47c30da64e9 (diff)
Bring Cygnus versions into the trunk, keeping our local patches
Diffstat (limited to 'gnu/usr.bin/binutils/gprof/cg_arcs.h')
-rw-r--r--gnu/usr.bin/binutils/gprof/cg_arcs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gprof/cg_arcs.h b/gnu/usr.bin/binutils/gprof/cg_arcs.h
index 25d5b616737..132ee73667a 100644
--- a/gnu/usr.bin/binutils/gprof/cg_arcs.h
+++ b/gnu/usr.bin/binutils/gprof/cg_arcs.h
@@ -20,6 +20,7 @@ typedef struct arc
double child_time; /* child-time inherited along arc */
struct arc *next_parent; /* next parent of CHILD */
struct arc *next_child; /* next child of PARENT */
+ int has_been_placed; /* have this arc's functions been placed? */
}
Arc;
@@ -29,5 +30,7 @@ extern Sym *cycle_header; /* cycle headers */
extern void arc_add PARAMS ((Sym * parent, Sym * child, int count));
extern Arc *arc_lookup PARAMS ((Sym * parent, Sym * child));
extern Sym **cg_assemble PARAMS ((void));
+extern Arc **arcs;
+extern int numarcs;
#endif /* cg_arcs_h */