Changeset 609 for branches/GNU/src/binutils/bfd/coff-aux.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/coff-aux.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* 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. 3 3 Written by Richard Henderson <rth@tamu.edu>. 4 4 … … 41 41 #include "sysdep.h" 42 42 43 static b oolean coff_m68k_aux_link_add_one_symbol43 static bfd_boolean coff_m68k_aux_link_add_one_symbol 44 44 PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, 45 asection *, bfd_vma, const char *, b oolean,boolean,45 asection *, bfd_vma, const char *, bfd_boolean, bfd_boolean, 46 46 struct bfd_link_hash_entry **)); 47 47 … … 57 57 what you include in the shared object. */ 58 58 59 static b oolean59 static bfd_boolean 60 60 coff_m68k_aux_link_add_one_symbol (info, abfd, name, flags, section, value, 61 61 string, copy, collect, hashp) … … 67 67 bfd_vma value; 68 68 const char *string; 69 b oolean copy;70 b oolean collect;69 bfd_boolean copy; 70 bfd_boolean collect; 71 71 struct bfd_link_hash_entry **hashp; 72 72 { … … 87 87 else 88 88 { 89 h = bfd_link_hash_lookup (info->hash, name, true, copy, false);89 h = bfd_link_hash_lookup (info->hash, name, TRUE, copy, FALSE); 90 90 if (h == NULL) 91 91 { 92 92 if (hashp != NULL) 93 93 *hashp = NULL; 94 return false;94 return FALSE; 95 95 } 96 96 } 97 97 98 98 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) 100 100 != (struct bfd_hash_entry *) NULL)) 101 101 { 102 102 if (! (*info->callbacks->notice) (info, name, abfd, section, value)) 103 return false;103 return FALSE; 104 104 } 105 105 … … 122 122 h->u.def.section = section; 123 123 h->u.def.value = value; 124 return true;124 return TRUE; 125 125 } 126 126 else if (bfd_is_abs_section (section) && !bfd_is_abs_section (msec)) 127 return true;127 return TRUE; 128 128 } 129 129 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.