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.
This commit is contained in:
John Healy 2001-07-10 21:49:11 +00:00
parent 75af7f6801
commit 07e97ae2e3
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
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.
2001-07-10 Anders Norlander <anorland@synergenix.se>
* doc/as.texinfo (Incbin): Fix grammatical errors.

View File

@ -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);
}