diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
commit | b34976b65aea8f33690229600bbf4527ec3118e1 (patch) | |
tree | 6411348664ef81ca2aa2e3ff325116e6e6502edf /gprof/cg_dfn.c | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | binutils-gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'gprof/cg_dfn.c')
-rw-r--r-- | gprof/cg_dfn.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gprof/cg_dfn.c b/gprof/cg_dfn.c index a4ec5216a95..5c8b5ec745e 100644 --- a/gprof/cg_dfn.c +++ b/gprof/cg_dfn.c @@ -44,8 +44,8 @@ typedef struct } DFN_Stack; -static boolean is_numbered PARAMS ((Sym *)); -static boolean is_busy PARAMS ((Sym *)); +static bfd_boolean is_numbered PARAMS ((Sym *)); +static bfd_boolean is_busy PARAMS ((Sym *)); static void find_cycle PARAMS ((Sym *)); static void pre_visit PARAMS ((Sym *)); static void post_visit PARAMS ((Sym *)); @@ -59,7 +59,7 @@ int dfn_counter = DFN_NAN; /* * Is CHILD already numbered? */ -static boolean +static bfd_boolean is_numbered (child) Sym *child; { @@ -70,15 +70,15 @@ is_numbered (child) /* * Is CHILD already busy? */ -static boolean +static bfd_boolean is_busy (child) Sym *child; { if (child->cg.top_order == DFN_NAN) { - return false; + return FALSE; } - return true; + return TRUE; } |