diff options
author | Nick Clifton <nickc@redhat.com> | 2003-02-21 10:51:24 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-02-21 10:51:24 +0000 |
commit | cf888e70e2758491576cefa40a7dee1ac1924ec2 (patch) | |
tree | 94834224880cb557c45ad2817fceae16601dbd60 /ld/pe-dll.c | |
parent | c12536277750567d79cc50bd79525bad6f8e28ab (diff) | |
download | gdb-cf888e70e2758491576cefa40a7dee1ac1924ec2.zip gdb-cf888e70e2758491576cefa40a7dee1ac1924ec2.tar.gz gdb-cf888e70e2758491576cefa40a7dee1ac1924ec2.tar.bz2 |
Disable region size checking whilst relaxing sections.
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 5b7a741..95cdd7e 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -2694,7 +2694,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, NULL); + &stat_ptr->head, 0, (bfd_vma) 0, NULL, TRUE); /* Redo special stuff. */ ldemul_after_allocation (); @@ -2728,7 +2728,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, NULL); + &stat_ptr->head, 0, (bfd_vma) 0, NULL, TRUE); /* Redo special stuff. */ ldemul_after_allocation (); |