X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gprof%2Fbasic_blocks.c;h=e1a3b1a508b81d9cb4c71049bf1966360a872a9d;hb=de54374205650be71237ce51ef7981d30ddd78dc;hp=8f77437b651adce2486ec34d56e8e810467c711d;hpb=b90efa5b79ac1524ec260f8eb89d1be37e0219a7;p=deliverable%2Fbinutils-gdb.git diff --git a/gprof/basic_blocks.c b/gprof/basic_blocks.c index 8f77437b65..e1a3b1a508 100644 --- a/gprof/basic_blocks.c +++ b/gprof/basic_blocks.c @@ -2,7 +2,7 @@ of basic-block info to/from gmon.out; computing and formatting of basic-block related statistics. - Copyright (C) 1999-2015 Free Software Foundation, Inc. + Copyright (C) 1999-2020 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -248,7 +248,7 @@ bb_write_blocks (FILE *ofp, const char *filename) :: (: */ void -print_exec_counts () +print_exec_counts (void) { Sym **sorted_bbs, *sym; unsigned int i, j, len; @@ -282,7 +282,7 @@ print_exec_counts () for (i = 0; i < len; ++i) { sym = sorted_bbs [i]; - + if (sym->ncalls > 0 || ! ignore_zeros) { /* FIXME: This only works if bfd_vma is unsigned long. */ @@ -311,7 +311,7 @@ print_exec_counts () line of a file in sequential order. Global variable bb_annotate_all_lines enables execution count - compression (counts are supressed if identical to the last one) + compression (counts are suppressed if identical to the last one) and prints counts on all executed lines. Otherwise, print all basic-block execution counts exactly once on the line that starts the basic-block. */ @@ -459,7 +459,7 @@ annotate_with_count (char *buf, unsigned int width, int line_num, PTR arg) regarding that source file are printed. */ void -print_annotated_source () +print_annotated_source (void) { Sym *sym, *line_stats, *new_line; Source_File *sf;