Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/bfd/coff-aux.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* BFD back-end for Apple M68K COFF A/UX 3.x files.
    2    Copyright 1996, 1997, 2000 Free Software Foundation, Inc.
     2   Copyright 1996, 1997, 2000, 2002 Free Software Foundation, Inc.
    33   Written by Richard Henderson <rth@tamu.edu>.
    44
     
    4141#include "sysdep.h"
    4242
    43 static boolean coff_m68k_aux_link_add_one_symbol
     43static bfd_boolean coff_m68k_aux_link_add_one_symbol
    4444  PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword,
    45            asection *, bfd_vma, const char *, boolean, boolean,
     45           asection *, bfd_vma, const char *, bfd_boolean, bfd_boolean,
    4646           struct bfd_link_hash_entry **));
    4747
     
    5757   what you include in the shared object.  */
    5858
    59 static boolean
     59static bfd_boolean
    6060coff_m68k_aux_link_add_one_symbol (info, abfd, name, flags, section, value,
    6161                                   string, copy, collect, hashp)
     
    6767     bfd_vma value;
    6868     const char *string;
    69      boolean copy;
    70      boolean collect;
     69     bfd_boolean copy;
     70     bfd_boolean collect;
    7171     struct bfd_link_hash_entry **hashp;
    7272{
     
    8787      else
    8888        {
    89           h = bfd_link_hash_lookup (info->hash, name, true, copy, false);
     89          h = bfd_link_hash_lookup (info->hash, name, TRUE, copy, FALSE);
    9090          if (h == NULL)
    9191            {
    9292              if (hashp != NULL)
    9393                *hashp = NULL;
    94               return false;
     94              return FALSE;
    9595            }
    9696        }
    9797
    9898      if (info->notice_hash != (struct bfd_hash_table *) NULL
    99           && (bfd_hash_lookup (info->notice_hash, name, false, false)
     99          && (bfd_hash_lookup (info->notice_hash, name, FALSE, FALSE)
    100100              != (struct bfd_hash_entry *) NULL))
    101101        {
    102102          if (! (*info->callbacks->notice) (info, name, abfd, section, value))
    103             return false;
     103            return FALSE;
    104104        }
    105105
     
    122122              h->u.def.section = section;
    123123              h->u.def.value = value;
    124               return true;
     124              return TRUE;
    125125            }
    126126          else if (bfd_is_abs_section (section) && !bfd_is_abs_section (msec))
    127             return true;
     127            return TRUE;
    128128        }
    129129    }
Note: See TracChangeset for help on using the changeset viewer.