aboutsummaryrefslogtreecommitdiff
path: root/gprof/source.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1998-08-12 19:06:24 +0000
committerIan Lance Taylor <ian@airs.com>1998-08-12 19:06:24 +0000
commit8c73afb3537b7271772a31466ec614a4d0634436 (patch)
tree639323c1b8888bf5fe9abcccb505211b1d56383b /gprof/source.h
parent15ec5eb33b983e2900205cffd919cca52f8e1394 (diff)
downloadfsf-binutils-gdb-8c73afb3537b7271772a31466ec614a4d0634436.zip
fsf-binutils-gdb-8c73afb3537b7271772a31466ec614a4d0634436.tar.gz
fsf-binutils-gdb-8c73afb3537b7271772a31466ec614a4d0634436.tar.bz2
Avoid some overflow cases:
* basic_blocks.h (bb_min_calls): Change to unsigned long. * call_graph.h (cg_tally): Change count parameter to unsigned long. * cg_arcs.h (Arc): Change count field to unsigned long. (arc_add): Change count parameter to unsigned long. * source.h (Source_File): Change ncalls field to unsigned long. * symtab.h (Sym): Change fields ncalls, bb_calls, and cg.self_calls to unsigned long. * Many files: Update accordingly.
Diffstat (limited to 'gprof/source.h')
-rw-r--r--gprof/source.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gprof/source.h b/gprof/source.h
index ebdbb3b..b33bad3 100644
--- a/gprof/source.h
+++ b/gprof/source.h
@@ -9,7 +9,7 @@ typedef struct source_file
{
struct source_file *next;
const char *name; /* name of source file */
- int ncalls; /* # of "calls" to this file */
+ unsigned long ncalls; /* # of "calls" to this file */
int num_lines; /* # of lines in file */
int nalloced; /* number of lines allocated */
void **line; /* usage-dependent per-line data */