diff options
author | Steve Chamberlain <steve@cygnus> | 1991-11-04 00:35:19 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-11-04 00:35:19 +0000 |
commit | 522e0ead63af9429fce9cf7678df52a625d76228 (patch) | |
tree | 32e6c59ee752b6781c608df39633102524589a88 /bfd/ctor.c | |
parent | aeedc30e259cf538ed162639a75060b9c343f6f9 (diff) | |
download | gdb-522e0ead63af9429fce9cf7678df52a625d76228.zip gdb-522e0ead63af9429fce9cf7678df52a625d76228.tar.gz gdb-522e0ead63af9429fce9cf7678df52a625d76228.tar.bz2 |
Sat Nov 2 14:26:03 1991 Steve Chamberlain (steve at cygnus.com)
* Makefile.in: Added ctor.c
* archures.c (bfd_default_arch_struct) added
bfd_default_reloc_type_lookup.
* coffcode.h: removed a load of #if 0ed code.
(coff_compute_file_section_positions): now works out the section
alignment and size correctly in all cases.
(coff_get_symtab): looks for contructor symbols and calls the
right function when they're found. (coff_canonicalize_reloc):
knows when a section is full of contructors and does the right
thing.
* cpu-m88k.c: Added default_reloc_type lookup to the architecture
description.
* libbfd-in.h: (bfd_default_reloc_type_lookup) defun added.
* libcoff.h: removed #if 0ed code
* reloc.c: (bfd_reloc_code_real_type) added BFD_RELOC_CTOR for
arch independent contructtor relocation type.
(bfd_reloc_type_lookup): removed the comment "this will go away"
since it won't. (bfd_howto_32): stolen from 88k, this is a 32bit
reloc which is used when BFD_RELOC_CTOR falls through to give a
default 32bit reloc for contructors.
(bfd_default_reloc_type_lookup): added.
* aoutf1.h: fixed SEGMENT_SIZE typo.
Diffstat (limited to 'bfd/ctor.c')
-rw-r--r-- | bfd/ctor.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ the entry points as they accumulate. *; PROTO(void, bfd_constructor_entry, (bfd *abfd, asymbol **symbol_ptr_ptr, - CONST char*type); + CONST char*type)); */ |