* emultempl/mmix-elfnmmo.em (mmix_before_allocation): Force linker
authorHans-Peter Nilsson <hp@axis.com>
Sat, 18 Oct 2003 15:49:10 +0000 (15:49 +0000)
committerHans-Peter Nilsson <hp@axis.com>
Sat, 18 Oct 2003 15:49:10 +0000 (15:49 +0000)
relaxation always; don't exclude relocatable linking.  Adjust for
_bfd_mmix_prepare_linker_allocated_gregs renamed to
_bfd_mmix_before_linker_allocation.
(mmix_after_allocation): Adjust for
_bfd_mmix_finalize_linker_allocated_gregs renamed to
_bfd_mmix_after_linker_allocation.
* scripttempl/mmo.sc: Use ADDR (.text), not . - SIZEOF (.text).

ld/ChangeLog
ld/emultempl/mmix-elfnmmo.em
ld/scripttempl/mmo.sc

index be940113005d4732d51afa0d022f58217cf30eb8..187ae59ed4068e592ab5dc5df7ecc17d2fcd17ee 100644 (file)
@@ -1,5 +1,14 @@
 2003-10-18  Hans-Peter Nilsson  <hp@bitrange.com>
 
+       * emultempl/mmix-elfnmmo.em (mmix_before_allocation): Force linker
+       relaxation always; don't exclude relocatable linking.  Adjust for
+       _bfd_mmix_prepare_linker_allocated_gregs renamed to
+       _bfd_mmix_before_linker_allocation.
+       (mmix_after_allocation): Adjust for
+       _bfd_mmix_finalize_linker_allocated_gregs renamed to
+       _bfd_mmix_after_linker_allocation.
+       * scripttempl/mmo.sc: Use ADDR (.text), not . - SIZEOF (.text).
+
        * ldlang.c (lang_size_sections): Last, set _cooked_size for output
        sections.
 
index 3668e51be4661bb9e657b272901b9ed633bf0148..9777fa307ba32bc66b7507c532299f861cdfd7f9 100644 (file)
@@ -38,11 +38,11 @@ mmix_before_allocation (void)
      maintenance burden to keep them in sync.  (Of course we lose the
      maintenance burden of checking that it still does what we need.)  */
 
-  /* Force -relax on if not doing a relocatable link.  */
-  if (! link_info.relocatable)
-    command_line.relax = TRUE;
+  /* Force -relax on (regardless of whether we're doing a relocatable
+     link).  */
+  command_line.relax = TRUE;
 
-  if (!_bfd_mmix_prepare_linker_allocated_gregs (output_bfd, &link_info))
+  if (!_bfd_mmix_before_linker_allocation (output_bfd, &link_info))
     einfo ("%X%P: Internal problems setting up section %s",
           MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME);
 }
@@ -109,7 +109,7 @@ mmix_after_allocation (void)
   if (sec != NULL)
     bfd_set_section_vma (abfd, sec, 0);
 
-  if (!_bfd_mmix_finalize_linker_allocated_gregs (output_bfd, &link_info))
+  if (!_bfd_mmix_after_linker_allocation (output_bfd, &link_info))
     {
       /* This is a fatal error; make einfo call not return.  */
       einfo ("%F%P: Can't finalize linker-allocated global registers\n");
index b93953db53a844ea5abc225eaa0d0e89be7395a1..643b349539e30346eef217ca26a97c0fb7094c15 100644 (file)
@@ -55,7 +55,7 @@ SECTIONS
     ${RELOCATING+ PROVIDE(_etext = .);}
     ${RELOCATING+ PROVIDE(__etext = .);}
   }
-  ${RELOCATING+Main = DEFINED (Main) ? Main : (DEFINED (_start) ? _start : . - SIZEOF (.text));}
+  ${RELOCATING+Main = DEFINED (Main) ? Main : (DEFINED (_start) ? _start : ADDR (.text));}
 
   .stab 0 : { *(.stab) }
   .stabstr 0 : { *(.stabstr) }
This page took 0.05664 seconds and 4 git commands to generate.