aboutsummaryrefslogtreecommitdiff
path: root/gprof/gprof.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2021-03-31 10:29:52 +1030
committerAlan Modra <amodra@gmail.com>2021-03-31 10:49:23 +1030
commitfaa7a26040c617a6d29f601998b99a1da882c672 (patch)
tree704031231af1213b66d56395a5edaa65a043dd0b /gprof/gprof.h
parent9193bc4285c232400a26448ca75095c44c13f637 (diff)
downloadbinutils-faa7a26040c617a6d29f601998b99a1da882c672.zip
binutils-faa7a26040c617a6d29f601998b99a1da882c672.tar.gz
binutils-faa7a26040c617a6d29f601998b99a1da882c672.tar.bz2
Use bool in gprof
* basic_blocks.c: Replace bfd_boolean with bool, FALSE with false, and TRUE with true throughout. * basic_blocks.h: Likewise. * cg_arcs.c: Likewise. * cg_dfn.c: Likewise. * cg_print.c: Likewise. * corefile.c: Likewise. * gmon_io.c: Likewise. * gprof.c: Likewise. * gprof.h: Likewise. * hist.c: Likewise. * mips.c: Likewise. * source.c: Likewise. * source.h: Likewise. * sym_ids.c: Likewise. * sym_ids.h: Likewise. * symtab.h: Likewise. * vax.c: Likewise.
Diffstat (limited to 'gprof/gprof.h')
-rw-r--r--gprof/gprof.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/gprof/gprof.h b/gprof/gprof.h
index c919ea4..e1ce282 100644
--- a/gprof/gprof.h
+++ b/gprof/gprof.h
@@ -117,20 +117,20 @@ extern long hz; /* ticks per second */
extern int debug_level; /* debug level */
extern int output_style;
extern int output_width; /* controls column width in index */
-extern bfd_boolean bsd_style_output; /* as opposed to FSF style output */
-extern bfd_boolean demangle; /* demangle symbol names? */
-extern bfd_boolean ignore_direct_calls; /* don't count direct calls */
-extern bfd_boolean ignore_static_funcs; /* suppress static functions */
-extern bfd_boolean ignore_zeros; /* ignore unused symbols/files */
-extern bfd_boolean line_granularity; /* function or line granularity? */
-extern bfd_boolean print_descriptions; /* output profile description */
-extern bfd_boolean print_path; /* print path or just filename? */
-extern bfd_boolean ignore_non_functions; /* Ignore non-function symbols. */
-extern bfd_boolean inline_file_names; /* print file names after symbols */
+extern bool bsd_style_output; /* as opposed to FSF style output */
+extern bool demangle; /* demangle symbol names? */
+extern bool ignore_direct_calls; /* don't count direct calls */
+extern bool ignore_static_funcs; /* suppress static functions */
+extern bool ignore_zeros; /* ignore unused symbols/files */
+extern bool line_granularity; /* function or line granularity? */
+extern bool print_descriptions; /* output profile description */
+extern bool print_path; /* print path or just filename? */
+extern bool ignore_non_functions; /* Ignore non-function symbols. */
+extern bool inline_file_names; /* print file names after symbols */
extern File_Format file_format; /* requested file format */
-extern bfd_boolean first_output; /* no output so far? */
+extern bool first_output; /* no output so far? */
extern void done (int status) ATTRIBUTE_NORETURN;