diff options
Diffstat (limited to 'gprof/cg_arcs.c')
-rw-r--r-- | gprof/cg_arcs.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gprof/cg_arcs.c b/gprof/cg_arcs.c index 822184e..cea21cf 100644 --- a/gprof/cg_arcs.c +++ b/gprof/cg_arcs.c @@ -316,7 +316,7 @@ cycle_link () ++num; ++cyc; sym_init (cyc); - cyc->cg.print_flag = true; /* should this be printed? */ + cyc->cg.print_flag = TRUE; /* should this be printed? */ cyc->cg.top_order = DFN_NAN; /* graph call chain top-sort order */ cyc->cg.cyc.num = num; /* internal number of cycle on */ cyc->cg.cyc.head = cyc; /* pointer to head of cycle */ @@ -375,7 +375,7 @@ inherit_flags (child) if (child == head) { /* just a regular child, check its parents: */ - child->cg.print_flag = false; + child->cg.print_flag = FALSE; child->cg.prop.fract = 0.0; for (arc = child->cg.parents; arc; arc = arc->next_parent) { @@ -403,7 +403,7 @@ inherit_flags (child) * Its a member of a cycle, look at all parents from outside * the cycle. */ - head->cg.print_flag = false; + head->cg.print_flag = FALSE; head->cg.prop.fract = 0.0; for (member = head->cg.cyc.next; member; member = member->cg.cyc.next) { @@ -481,7 +481,7 @@ propagate_flags (symbols) || (syms[INCL_GRAPH].len == 0 && !sym_lookup (&syms[EXCL_GRAPH], child->addr))) { - child->cg.print_flag = true; + child->cg.print_flag = TRUE; } } else @@ -494,7 +494,7 @@ propagate_flags (symbols) if (!sym_lookup (&syms[INCL_GRAPH], child->addr) && sym_lookup (&syms[EXCL_GRAPH], child->addr)) { - child->cg.print_flag = false; + child->cg.print_flag = FALSE; } } if (child->cg.prop.fract == 0.0) @@ -632,7 +632,7 @@ cg_assemble () parent->cg.prop.fract = 0.0; parent->cg.prop.self = 0.0; parent->cg.prop.child = 0.0; - parent->cg.print_flag = false; + parent->cg.print_flag = FALSE; parent->cg.top_order = DFN_NAN; parent->cg.cyc.num = 0; parent->cg.cyc.head = parent; |