aboutsummaryrefslogtreecommitdiff
path: root/bfd/bfd.c
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-01-28 06:01:25 +0000
committerSteve Chamberlain <sac@cygnus>1992-01-28 06:01:25 +0000
commit6590a8c953ac7537b79cde4e6ed9d825721fedeb (patch)
tree8eee9c81a04fabd5d39831358742a92782500e9b /bfd/bfd.c
parent9ce31b6601d834bfddcbfff16c187a5fd3a6e498 (diff)
downloadgdb-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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/bfd.c b/bfd/bfd.c
index 7d919da..17574a3 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -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))
+
*/