diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-04-07 01:58:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-04-07 01:58:27 +0000 |
commit | dfc1c00613b3fc235bad8be97041d79583c85399 (patch) | |
tree | c5960414917b4d4786a9588fccac55805a424c55 /bfd/elf32-target.h | |
parent | fa77c7041cadca2771476977f504b9ab0c28e5b2 (diff) | |
download | gdb-dfc1c00613b3fc235bad8be97041d79583c85399.zip gdb-dfc1c00613b3fc235bad8be97041d79583c85399.tar.gz gdb-dfc1c00613b3fc235bad8be97041d79583c85399.tar.bz2 |
* All backends: Added BFD_JUMP_TABLE_DYNAMIC to target vector.
Diffstat (limited to 'bfd/elf32-target.h')
-rw-r--r-- | bfd/elf32-target.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/elf32-target.h b/bfd/elf32-target.h index ca4db21..f5a1fae 100644 --- a/bfd/elf32-target.h +++ b/bfd/elf32-target.h @@ -1,5 +1,5 @@ /* Target definitions for 32-bit ELF - Copyright 1993 Free Software Foundation, Inc. + Copyright 1993, 1994 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -204,6 +204,7 @@ bfd_target TARGET_BIG_SYM = BFD_JUMP_TABLE_RELOCS (bfd_elf32), BFD_JUMP_TABLE_WRITE (bfd_elf32), BFD_JUMP_TABLE_LINK (bfd_elf32), + BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), /* backend_data: */ (PTR) &elf32_bed, @@ -291,6 +292,7 @@ bfd_target TARGET_LITTLE_SYM = BFD_JUMP_TABLE_RELOCS (bfd_elf32), BFD_JUMP_TABLE_WRITE (bfd_elf32), BFD_JUMP_TABLE_LINK (bfd_elf32), + BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), /* backend_data: */ (PTR) &elf32_bed, |