From 07e97ae2e3f6b9b2fb98368af7b659024cba9733 Mon Sep 17 00:00:00 2001 From: John Healy Date: Tue, 10 Jul 2001 21:49:11 +0000 Subject: [PATCH] 2001-07-10 John Healy * 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. --- gas/ChangeLog | 6 ++++++ gas/config/obj-elf.c | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/gas/ChangeLog b/gas/ChangeLog index 67ee1c1c57..e7112e1f5a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2001-07-10 John Healy + + * 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 * doc/as.texinfo (Incbin): Fix grammatical errors. diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 2510f4b474..9498c18843 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); }