* elf32-sh.c (sh_elf_relax_delete_bytes): Fix setting of
authorJoern Rennecke <joern.rennecke@embecosm.com>
Thu, 3 Jun 1999 19:12:54 +0000 (19:12 +0000)
committerJoern Rennecke <joern.rennecke@embecosm.com>
Thu, 3 Jun 1999 19:12:54 +0000 (19:12 +0000)
start / stop for recalculating of r_addend of R_SH_SWITCH*.

bfd/ChangeLog
bfd/elf32-sh.c

index 0cfee3d336378d9e707a690a2bf7963480b57d83..a5d206562f0be655c94f26b33e584c2f6ad5bc42 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jun  4 03:10:49 1999  J"orn Rennecke <amylaar@cygnus.co.uk>
+
+       * elf32-sh.c (sh_elf_relax_delete_bytes): Fix setting of
+       start / stop for recalculating of r_addend of R_SH_SWITCH*.
+
 Fri Jun  4 02:53:13 1999  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * elf32-sh.c (sh_elf_relax_delete_bytes): Handle R_SH_SWITCH32
index b3670d0fcf10d556185b5bd225646075aa2d8607..0779e8ac091c945039767ad2e43c44243393db92 100644 (file)
@@ -1161,13 +1161,15 @@ sh_elf_relax_delete_bytes (abfd, sec, addr, count)
        case R_SH_SWITCH32:
          /* These relocs types represent
               .word L2-L1
-            The r_offset field holds the difference between the reloc
+            The r_addend field holds the difference between the reloc
             address and L1.  That is the start of the reloc, and
             adding in the contents gives us the top.  We must adjust
-            both the r_offset field and the section contents.  */
+            both the r_offset field and the section contents.
+            N.B. in gas / coff bfd, the elf bfd r_addend is called r_offset,
+            and the elf bfd r_offset is called r_vaddr.  */
 
-         start = irel->r_offset;
-         stop = (bfd_vma) ((bfd_signed_vma) start - (long) irel->r_addend);
+         stop = irel->r_offset;
+         start = (bfd_vma) ((bfd_signed_vma) stop - (long) irel->r_addend);
 
          if (start > addr
              && start < toaddr
@@ -1178,8 +1180,6 @@ sh_elf_relax_delete_bytes (abfd, sec, addr, count)
                   && (start <= addr || start >= toaddr))
            irel->r_addend -= count;
 
-         start = stop;
-
          if (ELF32_R_TYPE (irel->r_info) == (int) R_SH_SWITCH16)
            voff = bfd_get_signed_16 (abfd, contents + nraddr);
          else if (ELF32_R_TYPE (irel->r_info) == (int) R_SH_SWITCH8)
This page took 0.032426 seconds and 4 git commands to generate.