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 /ld/ldctor.c | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | gdb-b34976b65aea8f33690229600bbf4527ec3118e1.zip gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2 |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'ld/ldctor.c')
-rw-r--r-- | ld/ldctor.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ld/ldctor.c b/ld/ldctor.c index aa6a05b..a5089cf 100644 --- a/ld/ldctor.c +++ b/ld/ldctor.c @@ -1,6 +1,6 @@ /* ldctor.c -- constructor support routines - Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 - Free Software Foundation, Inc. + Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, + 2002 Free Software Foundation, Inc. By Steve Chamberlain <sac@cygnus.com> This file is part of GLD, the Gnu Linker. @@ -43,7 +43,7 @@ lang_statement_list_type constructor_list; /* Whether the constructors should be sorted. Note that this is global for the entire link; we assume that there is only a single CONSTRUCTORS command in the linker script. */ -boolean constructors_sorted; +bfd_boolean constructors_sorted; /* The sets we have seen. */ struct set_info *sets; @@ -204,16 +204,16 @@ ctor_cmp (p1, p2) void ldctor_build_sets () { - static boolean called; + static bfd_boolean called; lang_statement_list_type *old; - boolean header_printed; + bfd_boolean header_printed; struct set_info *p; /* The emulation code may call us directly, but we only want to do this once. */ if (called) return; - called = true; + called = TRUE; if (constructors_sorted) { @@ -256,7 +256,7 @@ ldctor_build_sets () lang_list_init (stat_ptr); - header_printed = false; + header_printed = FALSE; for (p = sets; p != (struct set_info *) NULL; p = p->next) { struct set_element *e; @@ -342,7 +342,7 @@ ldctor_build_sets () if (! header_printed) { minfo (_("\nSet Symbol\n\n")); - header_printed = true; + header_printed = TRUE; } minfo ("%s", p->h->root.string); |