* emultempl/elf32.em (gld${EMULATION_NAME}_finish): Use NULL instead
of false when calling lang_size_sections. (hppaelf_layout_sections_again): Likewise.
This commit is contained in:
parent
a6567fe028
commit
ca0b584738
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-11-20 Angela Marie Thomas <angela@redhat.com>
|
||||
|
||||
* emultempl/elf32.em (gld${EMULATION_NAME}_finish): Use NULL instead
|
||||
of false when calling lang_size_sections.
|
||||
(hppaelf_layout_sections_again): Likewise.
|
||||
|
||||
2001-11-15 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* emultempl/elf32.em (gld${EMULATION_NAME}_finish): Only emit this
|
||||
|
|
|
@ -1333,7 +1333,7 @@ gld${EMULATION_NAME}_finish ()
|
|||
{
|
||||
/* Resize the sections. */
|
||||
lang_size_sections (stat_ptr->head, abs_output_section,
|
||||
&stat_ptr->head, 0, (bfd_vma) 0, false);
|
||||
&stat_ptr->head, 0, (bfd_vma) 0, NULL);
|
||||
|
||||
/* Redo special stuff. */
|
||||
ldemul_after_allocation ();
|
||||
|
|
|
@ -228,7 +228,7 @@ hppaelf_layout_sections_again ()
|
|||
|
||||
/* Resize the sections. */
|
||||
lang_size_sections (stat_ptr->head, abs_output_section,
|
||||
&stat_ptr->head, 0, (bfd_vma) 0, false);
|
||||
&stat_ptr->head, 0, (bfd_vma) 0, NULL);
|
||||
|
||||
/* Redo special stuff. */
|
||||
ldemul_after_allocation ();
|
||||
|
|
Loading…
Reference in a new issue