diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-06-30 22:38:30 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-06-30 22:38:30 +0000 |
commit | fdcf7d43287e77faef1282771bd95a56dd141d1f (patch) | |
tree | 46d423601e62ca0ed94ac84b0e72a67f60a0c5ec /gprof/call_graph.c | |
parent | 106117aa9f2948a25030e85b9bcac81f43fdce3e (diff) | |
download | gdb-fdcf7d43287e77faef1282771bd95a56dd141d1f.zip gdb-fdcf7d43287e77faef1282771bd95a56dd141d1f.tar.gz gdb-fdcf7d43287e77faef1282771bd95a56dd141d1f.tar.bz2 |
* Many files: Add casts in many print statements to cast bfd_vma
values to unsigned long when calling printf.
* Makefile.am ($(OBJECTS)): Add gmon.h.
* Makefile.in: Rebuild.
Diffstat (limited to 'gprof/call_graph.c')
-rw-r--r-- | gprof/call_graph.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gprof/call_graph.c b/gprof/call_graph.c index 8f12cbd..6eee251 100644 --- a/gprof/call_graph.c +++ b/gprof/call_graph.c @@ -76,7 +76,7 @@ DEFUN (cg_read_rec, (ifp, filename), FILE * ifp AND CONST char *filename) count = bfd_get_32 (core_bfd, (bfd_byte *) arc.count); DBG (SAMPLEDEBUG, printf ("[cg_read_rec] frompc 0x%lx selfpc 0x%lx count %lu\n", - from_pc, self_pc, count)); + (unsigned long) from_pc, (unsigned long) self_pc, count)); /* add this arc: */ cg_tally (from_pc, self_pc, count); } @@ -110,7 +110,8 @@ DEFUN (cg_write_arcs, (ofp, filename), FILE * ofp AND const char *filename) } DBG (SAMPLEDEBUG, printf ("[cg_write_arcs] frompc 0x%lx selfpc 0x%lx count %lu\n", - arc->parent->addr, arc->child->addr, arc->count)); + (unsigned long) arc->parent->addr, + (unsigned long) arc->child->addr, arc->count)); } } } |