summaryrefslogtreecommitdiff
path: root/gprof/basic_blocks.c
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2004-05-26 04:55:55 +0000
committerBen Elliston <bje@au.ibm.com>2004-05-26 04:55:55 +0000
commit76e4b983275992c538d57478b11d9862e8d11257 (patch)
tree483568c2f582a49db5967d879d6228c97eb3cf26 /gprof/basic_blocks.c
parent624da7d0176d1e16f5f3e16d3b00cf55c4a4cf96 (diff)
downloadbinutils-redhat-76e4b983275992c538d57478b11d9862e8d11257.tar.gz
* alpha.c, basic_blocks.c, basic_blocks.h, bb_exit_func.c,gprof-post-ansify-2004-05-26
call_graph.c, call_graph.h, cg_arcs.c, cg_arcs.h, cg_dfn.c, cg_dfn.h, cg_print.c, cg_print.h, corefile.c, corefile.h, gmon_io.c, gmon_io.h, gprof.c, gprof.h, hertz.h, hist.c, hist.h, i386.c, mips.c, search_list.c, search_list.h, source.c, source.h, sparc.c, sym_ids.c, sym_ids.h, symtab.c, symtab.h, tahoe.c, utils.c, utils.h, vax.c, gen-c-prog.awk: Convert K&R C to ANSI C.
Diffstat (limited to 'gprof/basic_blocks.c')
-rw-r--r--gprof/basic_blocks.c33
1 files changed, 10 insertions, 23 deletions
diff --git a/gprof/basic_blocks.c b/gprof/basic_blocks.c
index a37ca0b244..57e3c7a33a 100644
--- a/gprof/basic_blocks.c
+++ b/gprof/basic_blocks.c
@@ -32,10 +32,10 @@
#include "symtab.h"
#include "sym_ids.h"
-static int cmp_bb PARAMS ((const PTR, const PTR));
-static int cmp_ncalls PARAMS ((const PTR, const PTR));
-static void fskip_string PARAMS ((FILE *));
-static void annotate_with_count PARAMS ((char *, unsigned int, int, PTR));
+static int cmp_bb (const PTR, const PTR);
+static int cmp_ncalls (const PTR, const PTR);
+static void fskip_string (FILE *);
+static void annotate_with_count (char *, unsigned int, int, PTR);
/* Default option values: */
bfd_boolean bb_annotate_all_lines = FALSE;
@@ -52,9 +52,7 @@ static long num_lines_executed;
number, and address (in that order). */
static int
-cmp_bb (lp, rp)
- const PTR lp;
- const PTR rp;
+cmp_bb (const PTR lp, const PTR rp)
{
int r;
const Sym *left = *(const Sym **) lp;
@@ -83,9 +81,7 @@ cmp_bb (lp, rp)
/* Helper for sorting. Order basic blocks in decreasing number of
calls, ties are broken in increasing order of line numbers. */
static int
-cmp_ncalls (lp, rp)
- const PTR lp;
- const PTR rp;
+cmp_ncalls (const PTR lp, const PTR rp)
{
const Sym *left = *(const Sym **) lp;
const Sym *right = *(const Sym **) rp;
@@ -105,8 +101,7 @@ cmp_ncalls (lp, rp)
/* Skip over variable length string. */
static void
-fskip_string (fp)
- FILE *fp;
+fskip_string (FILE *fp)
{
int ch;
@@ -121,9 +116,7 @@ fskip_string (fp)
of file IFP and is provided for formatting error-messages only. */
void
-bb_read_rec (ifp, filename)
- FILE *ifp;
- const char *filename;
+bb_read_rec (FILE *ifp, const char *filename)
{
int nblocks, b;
bfd_vma addr, ncalls;
@@ -211,9 +204,7 @@ bb_read_rec (ifp, filename)
is the name of OFP and is provided for producing error-messages
only. */
void
-bb_write_blocks (ofp, filename)
- FILE *ofp;
- const char *filename;
+bb_write_blocks (FILE *ofp, const char *filename)
{
unsigned int nblocks = 0;
Sym *sym;
@@ -323,11 +314,7 @@ print_exec_counts ()
that starts the basic-block. */
static void
-annotate_with_count (buf, width, line_num, arg)
- char *buf;
- unsigned int width;
- int line_num;
- PTR arg;
+annotate_with_count (char *buf, unsigned int width, int line_num, PTR arg)
{
Source_File *sf = arg;
Sym *b;