diff options
author | Steve Chamberlain <sac@cygnus> | 1992-01-28 06:01:25 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-01-28 06:01:25 +0000 |
commit | 6590a8c953ac7537b79cde4e6ed9d825721fedeb (patch) | |
tree | 8eee9c81a04fabd5d39831358742a92782500e9b /bfd/bfd.c | |
parent | 9ce31b6601d834bfddcbfff16c187a5fd3a6e498 (diff) | |
download | gdb-6590a8c953ac7537b79cde4e6ed9d825721fedeb.zip gdb-6590a8c953ac7537b79cde4e6ed9d825721fedeb.tar.gz gdb-6590a8c953ac7537b79cde4e6ed9d825721fedeb.tar.bz2 |
New entry point in the transfer vector - bfd_relax_section.
* aout-target.h: add to vector, call generic_relax
* bfd-in.h: add to vector
* bfd.c: add #define for vector
* bout.c: add to vector, call generic_relax
* coffcode.h: add to vector, also now has coff specific relax code
for the relaxable H8/300 relocs. Also clean up abs section cruft.
* elf.c: call generic_relax
* ieee.c: call new vector, clean up some bugs due to the creation
of bfd_abs_section
* libbfd.h: add bfd_generic_relax_section EXFUN
* oasys.c: call generic_relax
* reloc.c: implement generic_relax
* seclet.c: moved much of this into coffcode.h
* srec.c: call generic_relax
* targets.c: define new transfer vector
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r-- | bfd/bfd.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -573,6 +573,10 @@ DESCRIPTION . .#define bfd_get_relocated_section_contents(abfd, seclet) \ . BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet)) +. +.#define bfd_relax_section(abfd, section, symbols) \ +. BFD_SEND (abfd, _bfd_relax_section, (abfd, section, symbols)) + */ |