aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/pe-dll.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 8046b4e..b6b0079 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-10 Nick Clifton <nickc@redhat.com>
+
+ * pe-dll.c (pe_exe_fill_sections): Call lang_reset_memory_regions
+ before lang_size_sections.
+
2005-08-09 Alan Modra <amodra@bigpond.net.au>
* emulparams/hppa64linux.sh (LARGE_SECTIONS): Remove .tbss.
diff --git a/ld/pe-dll.c b/ld/pe-dll.c
index e89c8b9..88e7eda 100644
--- a/ld/pe-dll.c
+++ b/ld/pe-dll.c
@@ -2636,6 +2636,7 @@ pe_dll_fill_sections (bfd *abfd, struct bfd_link_info *info)
bfd_set_section_size (filler_bfd, reloc_s, reloc_sz);
/* Resize the sections. */
+ lang_reset_memory_regions ();
lang_size_sections (NULL, TRUE);
/* Redo special stuff. */
@@ -2666,6 +2667,7 @@ pe_exe_fill_sections (bfd *abfd, struct bfd_link_info *info)
bfd_set_section_size (filler_bfd, reloc_s, reloc_sz);
/* Resize the sections. */
+ lang_reset_memory_regions ();
lang_size_sections (NULL, TRUE);
/* Redo special stuff. */