diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-01-03 22:13:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-01-03 22:13:05 +0000 |
commit | ba8f9c0955413e24ee14468e8f923b9889443187 (patch) | |
tree | 134f221a156e17942cc5b2603b7a04b40016090f /gas/config | |
parent | ff12f303355b20de1260bc1d007f973bd02615dc (diff) | |
download | gdb-ba8f9c0955413e24ee14468e8f923b9889443187.zip gdb-ba8f9c0955413e24ee14468e8f923b9889443187.tar.gz gdb-ba8f9c0955413e24ee14468e8f923b9889443187.tar.bz2 |
Fri Jan 3 17:10:33 1997 Richard Henderson <rth@tamu.edu>
* config/obj-elf.c (elf_file_symbol): When using ECOFF debugging,
pass on the new file hook.
* config/tc-alpha.c (alpha_fix_adjustable): Not quite the same as
!alpha_force_relocation, as local LITERALs can be adjusted to be
relative to the section.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-elf.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 6c37d71..c01f040 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -1,5 +1,5 @@ /* ELF object file format - Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -220,6 +220,10 @@ elf_file_symbol (s) verify_symbol_chain (symbol_rootP, symbol_lastP); #endif } + +#ifdef NEED_ECOFF_DEBUG + ecoff_new_file (s); +#endif } static void @@ -1291,6 +1295,7 @@ const struct format_ops elf_format_ops = 1, elf_frob_symbol, elf_frob_file, + elf_frob_file_after_relocs, elf_s_get_size, elf_s_set_size, elf_s_get_align, elf_s_set_align, elf_copy_symbol_attributes, |