2001-07-10 John Healy <jhealy@redhat.com>
authorJohn Healy <jhealy@redhat.com>
Tue, 10 Jul 2001 21:49:11 +0000 (21:49 +0000)
committerJohn Healy <jhealy@redhat.com>
Tue, 10 Jul 2001 21:49:11 +0000 (21:49 +0000)
* 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
gas/config/obj-elf.c

index 67ee1c1c57bd141b8524f8a621c90fa3636f8b7f..e7112e1f5a22455edaf7260c446d25c10b1c00b6 100644 (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.
index 2510f4b47442e70f525bd0993de96d41cb95f565..9498c1884359d46b6686e3f85be2187c8310a6a5 100644 (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);
 }