diff options
author | John Healy <jhealy@redhat.com> | 2001-07-10 21:49:11 +0000 |
---|---|---|
committer | John Healy <jhealy@redhat.com> | 2001-07-10 21:49:11 +0000 |
commit | 07e97ae2e3f6b9b2fb98368af7b659024cba9733 (patch) | |
tree | f71a11e0a93084cd9ac703323ba8134712654b8f /gas/config | |
parent | 75af7f6801beb09d1c2726a1c80b92ef92ee2fce (diff) | |
download | gdb-07e97ae2e3f6b9b2fb98368af7b659024cba9733.zip gdb-07e97ae2e3f6b9b2fb98368af7b659024cba9733.tar.gz gdb-07e97ae2e3f6b9b2fb98368af7b659024cba9733.tar.bz2 |
2001-07-10 John Healy <jhealy@redhat.com>
* config/obj-elf.c (obj_elf_section): md_elf_section_change_data_hook
added to grab section information after it's been extracted from the
.section directive.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-elf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 2510f4b..9498c18 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -982,6 +982,10 @@ obj_elf_section (push) attr &= SHF_MERGE; } +#ifdef md_elf_section_change_data_hook + md_elf_section_change_data_hook (name, type, attr, entsize, push); +#endif + obj_elf_change_section (name, type, attr, entsize, push); } |