aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/ppc64elf.em
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-02-21 10:51:24 +0000
committerNick Clifton <nickc@redhat.com>2003-02-21 10:51:24 +0000
commitcf888e70e2758491576cefa40a7dee1ac1924ec2 (patch)
tree94834224880cb557c45ad2817fceae16601dbd60 /ld/emultempl/ppc64elf.em
parentc12536277750567d79cc50bd79525bad6f8e28ab (diff)
downloadgdb-cf888e70e2758491576cefa40a7dee1ac1924ec2.zip
gdb-cf888e70e2758491576cefa40a7dee1ac1924ec2.tar.gz
gdb-cf888e70e2758491576cefa40a7dee1ac1924ec2.tar.bz2
Disable region size checking whilst relaxing sections.
Diffstat (limited to 'ld/emultempl/ppc64elf.em')
-rw-r--r--ld/emultempl/ppc64elf.em4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/emultempl/ppc64elf.em b/ld/emultempl/ppc64elf.em
index b524e01..925c27f 100644
--- a/ld/emultempl/ppc64elf.em
+++ b/ld/emultempl/ppc64elf.em
@@ -118,7 +118,7 @@ ppc_before_allocation ()
/* Size the sections. This is premature, but we want to know the
TLS segment layout so that certain optimizations can be done. */
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);
if (!ppc64_elf_tls_optimize (output_bfd, &link_info))
{
@@ -273,7 +273,7 @@ ppc_layout_sections_again ()
/* 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);
/* Recalculate TOC base. */
ldemul_after_allocation ();