From b34976b65aea8f33690229600bbf4527ec3118e1 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 30 Nov 2002 08:39:46 +0000 Subject: s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify comparisons of bfd_boolean vars with TRUE/FALSE. Formatting. --- ld/ldctor.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ld/ldctor.c') 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 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); -- cgit v1.1