diff options
author | Alan Modra <amodra@gmail.com> | 2001-08-20 00:22:41 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-08-20 00:22:41 +0000 |
commit | ae7fb08f1a002acd930c38897b9993b780d8798c (patch) | |
tree | 87762c70a8a75fd06e2d4e560da11eab4e12072c /ld/pe-dll.c | |
parent | 415b1b13876006c4704a85e6dfc8bdda38a5056e (diff) | |
download | gdb-ae7fb08f1a002acd930c38897b9993b780d8798c.zip gdb-ae7fb08f1a002acd930c38897b9993b780d8798c.tar.gz gdb-ae7fb08f1a002acd930c38897b9993b780d8798c.tar.bz2 |
* pe-dll.c (pe_dll_fill_sections): Correct type of "relax" param
passed to lang_size_sections.
(pe_exe_fill_sections): Likewise.
* emultempl/pe.em (output_prev_sec_find): Copied from elf32.em.
(gld_${EMULATION_NAME}_place_orphan): Merge from elf32.em.
Diffstat (limited to 'ld/pe-dll.c')
-rw-r--r-- | ld/pe-dll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 1c9cb78..8bbd8fd 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2361,7 +2361,7 @@ pe_dll_fill_sections (abfd, info) /* 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 (); @@ -2395,7 +2395,7 @@ pe_exe_fill_sections (abfd, info) /* 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 (); |