]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blobdiff - binutils/patches/binutils-2.23.52.0.1-pt-pax-flags-20130326.patch
binutils: Update to 2.23.52.0.1
[people/ms/ipfire-3.x.git] / binutils / patches / binutils-2.23.52.0.1-pt-pax-flags-20130326.patch
similarity index 75%
rename from binutils/patches/binutils-2.23.51.0.5-pt-pax-flags-20121112.patch
rename to binutils/patches/binutils-2.23.52.0.1-pt-pax-flags-20130326.patch
index 9b476c3c21092d598e6bcf8c7fd2abed1e6ce783..b173b2ae768cd58a4df67444240c7326be7a23fb 100644 (file)
@@ -1,5 +1,5 @@
---- binutils-2.23.51.0.5/bfd/elf-bfd.h
-+++ binutils-2.23.51.0.5/bfd/elf-bfd.h
+--- binutils-2.23.52.0.1/bfd/elf-bfd.h
++++ binutils-2.23.52.0.1/bfd/elf-bfd.h
 @@ -1577,6 +1577,9 @@ struct elf_obj_tdata
    /* Segment flags for the PT_GNU_STACK segment.  */
    unsigned int stack_flags;
@@ -7,11 +7,19 @@
 +  /* Segment flags for the PT_PAX_FLAGS segment.  */
 +  unsigned int pax_flags;
 +
-   /* Symbol version definitions in external objects.  */
-   Elf_Internal_Verdef *verdef;
---- binutils-2.23.51.0.5/bfd/elf.c
-+++ binutils-2.23.51.0.5/bfd/elf.c
+   /* This is set to TRUE if the object was created by the backend
+      linker.  */
+   bfd_boolean linker;
+@@ -1707,6 +1707,7 @@
+ #define elf_eh_frame_hdr(bfd) (elf_tdata(bfd) -> o->eh_frame_hdr)
+ #define elf_linker(bfd)               (elf_tdata(bfd) -> o->linker)
+ #define elf_stack_flags(bfd)  (elf_tdata(bfd) -> o->stack_flags)
++#define elf_pax_flags(bfd)    (elf_tdata(bfd) -> o->pax_flags)
+ #define elf_shstrtab(bfd)     (elf_tdata(bfd) -> o->strtab_ptr)
+ #define elf_onesymtab(bfd)    (elf_tdata(bfd) -> symtab_section)
+ #define elf_symtab_shndx(bfd) (elf_tdata(bfd) -> symtab_shndx_section)
+--- binutils-2.23.52.0.1/bfd/elf.c
++++ binutils-2.23.52.0.1/bfd/elf.c
 @@ -1158,6 +1158,7 @@ get_segment_type (unsigned int p_type)
      case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
      case PT_GNU_STACK: pt = "STACK"; break;
@@ -53,7 +61,7 @@
 +      goto error_return;
 +      m->next = NULL;
 +      m->p_type = PT_PAX_FLAGS;
-+      m->p_flags = elf_tdata (abfd)->pax_flags;
++      m->p_flags = elf_pax_flags (abfd);
 +      m->p_flags_valid = 1;
 +
 +      *pm = m;
     && (segment->p_type != PT_TLS                                      \
         || (section->flags & SEC_THREAD_LOCAL))                                \
     && (segment->p_type == PT_LOAD                                     \
---- binutils-2.23.51.0.5/bfd/elflink.c
-+++ binutils-2.23.51.0.5/bfd/elflink.c
+--- binutils-2.23.52.0.1/bfd/elflink.c
++++ binutils-2.23.52.0.1/bfd/elflink.c
 @@ -5545,17 +5545,30 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd,
        && ! (*bed->elf_backend_always_size_sections) (output_bfd, info))
      return FALSE;
  
-+  elf_tdata (output_bfd)->pax_flags = PF_NORANDEXEC;
++  elf_pax_flags (output_bfd) = PF_NORANDEXEC;
 +  if (info->execheap)
-+    elf_tdata (output_bfd)->pax_flags |= PF_NOMPROTECT;
++    elf_pax_flags (output_bfd) |= PF_NOMPROTECT;
 +  else if (info->noexecheap)
-+    elf_tdata (output_bfd)->pax_flags |= PF_MPROTECT;
++    elf_pax_flags (output_bfd) |= PF_MPROTECT;
 +
    /* Determine any GNU_STACK segment requirements, after the backend
       has had a chance to set a default segment size.  */
    if (info->execstack)
--    elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
+-    elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
 +    {
-+      elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
-+      elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP;
++      elf_stack_flags (output_bfd) = PF_R | PF_W | PF_X;
++      elf_pax_flags (output_bfd) |= PF_EMUTRAMP;
 +    }
    else if (info->noexecstack)
--    elf_tdata (output_bfd)->stack_flags = PF_R | PF_W;
+-    elf_stack_flags (output_bfd) = PF_R | PF_W;
 +    {
-+      elf_tdata (output_bfd)->stack_flags = PF_R | PF_W;
-+      elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP;
++      elf_stack_flags (output_bfd) = PF_R | PF_W;
++      elf_pax_flags (output_bfd) |= PF_NOEMUTRAMP;
 +    }
    else
      {
        asection *notesec = NULL;
        int exec = 0;
  
-+      elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP;
++      elf_pax_flags (output_bfd) |= PF_NOEMUTRAMP;
        for (inputobj = info->input_bfds;
           inputobj;
           inputobj = inputobj->link_next)
              if (s->flags & SEC_CODE)
 -              exec = PF_X;
 +              {
-+                elf_tdata (output_bfd)->pax_flags &= ~PF_NOEMUTRAMP;
-+                elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP;
++                elf_pax_flags (output_bfd) &= ~PF_NOEMUTRAMP;
++                elf_pax_flags (output_bfd) |= PF_EMUTRAMP;
 +                exec = PF_X;
 +              }
              notesec = s;
            }
          else if (bed->default_execstack)
---- binutils-2.23.51.0.5/binutils/readelf.c
-+++ binutils-2.23.51.0.5/binutils/readelf.c
+--- binutils-2.23.52.0.1/binutils/readelf.c
++++ binutils-2.23.52.0.1/binutils/readelf.c
 @@ -2740,6 +2740,7 @@ get_segment_type (unsigned long p_type)
                        return "GNU_EH_FRAME";
      case PT_GNU_STACK:        return "GNU_STACK";
  
      default:
        if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
---- binutils-2.23.51.0.5/include/bfdlink.h
-+++ binutils-2.23.51.0.5/include/bfdlink.h
+--- binutils-2.23.52.0.1/include/bfdlink.h
++++ binutils-2.23.52.0.1/include/bfdlink.h
 @@ -322,6 +322,14 @@ struct bfd_link_info
    /* TRUE if PT_GNU_RELRO segment should be created.  */
    unsigned int relro: 1;
    /* TRUE if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
       should be created.  */
    unsigned int eh_frame_hdr: 1;
---- binutils-2.23.51.0.5/include/elf/common.h
-+++ binutils-2.23.51.0.5/include/elf/common.h
+--- binutils-2.23.52.0.1/include/elf/common.h
++++ binutils-2.23.52.0.1/include/elf/common.h
 @@ -429,6 +429,7 @@
  #define PT_SUNW_EH_FRAME PT_GNU_EH_FRAME      /* Solaris uses the same value */
  #define PT_GNU_STACK  (PT_LOOS + 0x474e551) /* Stack flags */
  /* Values for section header, sh_type field.  */
  
  #define SHT_NULL      0               /* Section header table entry unused */
---- binutils-2.23.51.0.5/ld/emultempl/elf32.em
-+++ binutils-2.23.51.0.5/ld/emultempl/elf32.em
+--- binutils-2.23.52.0.1/ld/emultempl/elf32.em
++++ binutils-2.23.52.0.1/ld/emultempl/elf32.em
 @@ -2285,6 +2285,16 @@ fragment <<EOF
          link_info.noexecstack = TRUE;
          link_info.execstack = FALSE;
  EOF
  if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
  fragment <<EOF
---- binutils-2.23.51.0.5/ld/ldgram.y
-+++ binutils-2.23.51.0.5/ld/ldgram.y
+--- binutils-2.23.52.0.1/ld/ldgram.y
++++ binutils-2.23.52.0.1/ld/ldgram.y
 @@ -1119,6 +1119,8 @@ phdr_type:
                            $$ = exp_intop (0x6474e550);
                          else if (strcmp (s, "PT_GNU_STACK") == 0)
                          else
                            {
                              einfo (_("\
---- binutils-2.23.51.0.5/ld/testsuite/ld-alpha/tlsbin.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-alpha/tlsbin.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-alpha/tlsbin.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-alpha/tlsbin.rd
 @@ -35,13 +35,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+
  
  Program Headers:
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 3 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-alpha/tlsbinr.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-alpha/tlsbinr.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-alpha/tlsbinr.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-alpha/tlsbinr.rd
 @@ -42,6 +42,7 @@ Program Headers:
   +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ RWE 0x10000
   +DYNAMIC +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ RW +0x8
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 2 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-alpha/tlspic.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-alpha/tlspic.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-alpha/tlspic.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-alpha/tlspic.rd
 @@ -38,6 +38,7 @@ Program Headers:
   +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ RWE 0x10000
   +DYNAMIC +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ RW +0x8
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 7 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-elf/eh1.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-elf/eh1.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-elf/eh1.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-elf/eh1.d
 @@ -22,11 +22,11 @@ Contents of the .eh_frame section:
    DW_CFA_nop
    DW_CFA_nop
    DW_CFA_def_cfa_register: r6 \(rbp\)
  
  00000038 ZERO terminator
---- binutils-2.23.51.0.5/ld/testsuite/ld-elf/eh2.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-elf/eh2.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-elf/eh2.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-elf/eh2.d
 @@ -22,11 +22,11 @@ Contents of the .eh_frame section:
    DW_CFA_nop
    DW_CFA_nop
    DW_CFA_def_cfa_register: r6 \(rbp\)
  
  00000038 ZERO terminator
---- binutils-2.23.51.0.5/ld/testsuite/ld-elf/eh3.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-elf/eh3.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-elf/eh3.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-elf/eh3.d
 @@ -22,11 +22,11 @@ Contents of the .eh_frame section:
    DW_CFA_nop
    DW_CFA_nop
    DW_CFA_def_cfa_register: r6 \(rbp\)
  
  00000038 ZERO terminator
---- binutils-2.23.51.0.5/ld/testsuite/ld-elf/orphan-region.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-elf/orphan-region.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-elf/orphan-region.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-elf/orphan-region.d
 @@ -15,7 +15,9 @@
  Program Headers:
    Type.*
    Segment Sections...
     00     .text .rodata .moredata *
 +   01 +
---- binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsbin.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsbin.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsbin.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsbin.rd
 @@ -44,6 +44,7 @@ Program Headers:
   +LOAD.*
   +DYNAMIC.*
  
  Relocation section '.rel.dyn' at offset 0x[0-9a-f]+ contains 9 entries:
   Offset +Info +Type +Sym.Value +Sym. Name
---- binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsbindesc.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsbindesc.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsbindesc.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsbindesc.rd
 @@ -42,6 +42,7 @@ Program Headers:
   +LOAD.*
   +DYNAMIC.*
  
  Relocation section '.rel.dyn' at offset 0x[0-9a-f]+ contains 9 entries:
   Offset +Info +Type +Sym.Value +Sym. Name
---- binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsdesc.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsdesc.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsdesc.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsdesc.rd
 @@ -39,6 +39,7 @@ Program Headers:
   +LOAD.*
   +DYNAMIC.*
  
  Relocation section '.rel.dyn' at offset 0x[0-9a-f]+ contains 20 entries:
   Offset +Info +Type +Sym.Value +Sym. Name
---- binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsgdesc.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsgdesc.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsgdesc.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsgdesc.rd
 @@ -36,12 +36,14 @@ Program Headers:
   +LOAD.*
   +LOAD.*
  
  Relocation section '.rel.dyn' at offset 0x[0-9a-f]+ contains 8 entries:
   Offset +Info +Type +Sym.Value +Sym. Name
---- binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsnopic.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlsnopic.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsnopic.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlsnopic.rd
 @@ -37,6 +37,7 @@ Program Headers:
   +LOAD.*
   +DYNAMIC.*
  
  Relocation section '.rel.dyn' at offset 0x[0-9a-f]+ contains 20 entries:
   Offset +Info +Type +Sym.Value +Sym. Name
---- binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlspic.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-i386/tlspic.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlspic.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-i386/tlspic.rd
 @@ -40,6 +40,7 @@ Program Headers:
   +LOAD.*
   +DYNAMIC.*
  
  Relocation section '.rel.dyn' at offset 0x[0-9a-f]+ contains 26 entries:
   Offset +Info +Type +Sym.Value +Sym. Name
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge1.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge1.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge1.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge1.d
 @@ -4,7 +4,7 @@
  #objdump: -d
  
  [     ]*[a-f0-9]+:    0b 60 80 02 00 24       \[MMI\]       addl r12=32,r1;;
  [     ]*[a-f0-9]+:    c0 c0 04 00 48 00                   addl r12=24,r1
  [     ]*[a-f0-9]+:    00 00 04 00                         nop.i 0x0;;
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge2.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge2.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge2.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge2.d
 @@ -4,7 +4,7 @@
  #objdump: -d
  
  [     ]*[a-f0-9]+:    0b 60 80 02 00 24       \[MMI\]       addl r12=32,r1;;
  [     ]*[a-f0-9]+:    c0 c0 04 00 48 00                   addl r12=24,r1
  [     ]*[a-f0-9]+:    00 00 04 00                         nop.i 0x0;;
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge3.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge3.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge3.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge3.d
 @@ -4,7 +4,7 @@
  #objdump: -d
  
  [     ]*[a-f0-9]+:    0b 60 80 02 00 24       \[MMI\]       addl r12=32,r1;;
  [     ]*[a-f0-9]+:    c0 40 05 00 48 00                   addl r12=40,r1
  [     ]*[a-f0-9]+:    00 00 04 00                         nop.i 0x0;;
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge4.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge4.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge4.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge4.d
 @@ -4,7 +4,7 @@
  #objdump: -d
  
  [     ]*[a-f0-9]+:    0b 60 80 02 00 24       \[MMI\]       addl r12=32,r1;;
  [     ]*[a-f0-9]+:    c0 40 05 00 48 00                   addl r12=40,r1
  [     ]*[a-f0-9]+:    00 00 04 00                         nop.i 0x0;;
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge5.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/merge5.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge5.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/merge5.d
 @@ -4,7 +4,7 @@
  #objdump: -d
  
  [     ]*[a-f0-9]+:    0b 60 80 02 00 24       \[MMI\]       addl r12=32,r1;;
  [     ]*[a-f0-9]+:    c0 40 05 00 48 00                   addl r12=40,r1
  [     ]*[a-f0-9]+:    00 00 04 00                         nop.i 0x0;;
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/tlsbin.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/tlsbin.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/tlsbin.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/tlsbin.rd
 @@ -36,13 +36,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+
  
  Program Headers:
   +IA_64_UNWIND .* R +0x8
  #...
  
---- binutils-2.23.51.0.5/ld/testsuite/ld-ia64/tlspic.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-ia64/tlspic.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-ia64/tlspic.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-ia64/tlspic.rd
 @@ -40,6 +40,7 @@ Program Headers:
   +LOAD +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+0[0-9a-f]+ 0x0+0[0-9a-f]+ RW +0x10000
   +DYNAMIC +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+140 0x0+140 RW +0x8
   +IA_64_UNWIND +0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ 0x0+18 0x0+18 R +0x8
  #...
  
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/multi-got-no-shared.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/multi-got-no-shared.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/multi-got-no-shared.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/multi-got-no-shared.d
 @@ -8,9 +8,9 @@
  .*: +file format.*
  
  #...
  00408d60 <[^>]*> 3c1c0043     lui     gp,0x43
  00408d64 <[^>]*> 279c2c98     addiu   gp,gp,11416
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is DYN \(Shared object file\)
   *0*3 * \.dynamic *
   *0*4 *
 + *0*5 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is EXEC \(Executable file\)
   *0*6 *\.dynamic *
   *0*7 *
 + *0*8 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is EXEC \(Executable file\)
   *0*6 * \.dynamic *
   *0*7 *
 + *0*8 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is EXEC \(Executable file\)
   *0*6 * \.dynamic *
   *0*7 *
 + *0*8 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is EXEC \(Executable file\)
   *0*6 * \.dynamic *
   *0*7 *
 + *0*8 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is EXEC \(Executable file\)
   *0*5 * \.dynamic *
   *0*6 *
 + *0*7 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd
 @@ -1,7 +1,7 @@
  
  Elf file type is EXEC \(Executable file\)
   *0*6 * \.dynamic *
   *0*7 *
 + *0*8 *
---- binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/tlsbin-o32.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-mips-elf/tlsbin-o32.d
-@@ -2,42 +2,42 @@
- Disassembly of section .text:
--004000d0 <__start>:
--  4000d0:     3c1c0fc0        lui     gp,0xfc0
--  4000d4:     279c7f30        addiu   gp,gp,32560
--  4000d8:     0399e021        addu    gp,gp,t9
--  4000dc:     27bdfff0        addiu   sp,sp,-16
--  4000e0:     afbe0008        sw      s8,8\(sp\)
--  4000e4:     03a0f021        move    s8,sp
--  4000e8:     afbc0000        sw      gp,0\(sp\)
--  4000ec:     8f998018        lw      t9,-32744\(gp\)
--  4000f0:     27848028        addiu   a0,gp,-32728
--  4000f4:     0320f809        jalr    t9
--  4000f8:     00000000        nop
--  4000fc:     8fdc0000        lw      gp,0\(s8\)
--  400100:     00000000        nop
--  400104:     8f998018        lw      t9,-32744\(gp\)
--  400108:     27848020        addiu   a0,gp,-32736
--  40010c:     0320f809        jalr    t9
--  400110:     00000000        nop
--  400114:     8fdc0000        lw      gp,0\(s8\)
--  400118:     00401021        move    v0,v0
--  40011c:     3c030000        lui     v1,0x0
--  400120:     24638000        addiu   v1,v1,-32768
--  400124:     00621821        addu    v1,v1,v0
--  400128:     7c02283b        rdhwr   v0,\$5
--  40012c:     8f83801c        lw      v1,-32740\(gp\)
--  400130:     00000000        nop
--  400134:     00621821        addu    v1,v1,v0
--  400138:     7c02283b        rdhwr   v0,\$5
--  40013c:     3c030000        lui     v1,0x0
--  400140:     24639004        addiu   v1,v1,-28668
--  400144:     00621821        addu    v1,v1,v0
--  400148:     03c0e821        move    sp,s8
--  40014c:     8fbe0008        lw      s8,8\(sp\)
--  400150:     03e00008        jr      ra
--  400154:     27bd0010        addiu   sp,sp,16
-+00400[0-9a-f]{3} <__start>:
-+  400[0-9a-f]{3}:     3c1c0fc0        lui     gp,0xfc0
-+  400[0-9a-f]{3}:     279c7f30        addiu   gp,gp,32560
-+  400[0-9a-f]{3}:     0399e021        addu    gp,gp,t9
-+  400[0-9a-f]{3}:     27bdfff0        addiu   sp,sp,-16
-+  400[0-9a-f]{3}:     afbe0008        sw      s8,8\(sp\)
-+  400[0-9a-f]{3}:     03a0f021        move    s8,sp
-+  400[0-9a-f]{3}:     afbc0000        sw      gp,0\(sp\)
-+  400[0-9a-f]{3}:     8f998018        lw      t9,-32744\(gp\)
-+  400[0-9a-f]{3}:     27848028        addiu   a0,gp,-32728
-+  400[0-9a-f]{3}:     0320f809        jalr    t9
-+  400[0-9a-f]{3}:     00000000        nop
-+  400[0-9a-f]{3}:     8fdc0000        lw      gp,0\(s8\)
-+  400[0-9a-f]{3}:     00000000        nop
-+  400[0-9a-f]{3}:     8f998018        lw      t9,-32744\(gp\)
-+  400[0-9a-f]{3}:     27848020        addiu   a0,gp,-32736
-+  400[0-9a-f]{3}:     0320f809        jalr    t9
-+  400[0-9a-f]{3}:     00000000        nop
-+  400[0-9a-f]{3}:     8fdc0000        lw      gp,0\(s8\)
-+  400[0-9a-f]{3}:     00401021        move    v0,v0
-+  400[0-9a-f]{3}:     3c030000        lui     v1,0x0
-+  400[0-9a-f]{3}:     24638000        addiu   v1,v1,-32768
-+  400[0-9a-f]{3}:     00621821        addu    v1,v1,v0
-+  400[0-9a-f]{3}:     7c02283b        rdhwr   v0,\$5
-+  400[0-9a-f]{3}:     8f83801c        lw      v1,-32740\(gp\)
-+  400[0-9a-f]{3}:     00000000        nop
-+  400[0-9a-f]{3}:     00621821        addu    v1,v1,v0
-+  400[0-9a-f]{3}:     7c02283b        rdhwr   v0,\$5
-+  400[0-9a-f]{3}:     3c030000        lui     v1,0x0
-+  400[0-9a-f]{3}:     24639004        addiu   v1,v1,-28668
-+  400[0-9a-f]{3}:     00621821        addu    v1,v1,v0
-+  400[0-9a-f]{3}:     03c0e821        move    sp,s8
-+  400[0-9a-f]{3}:     8fbe0008        lw      s8,8\(sp\)
-+  400[0-9a-f]{3}:     03e00008        jr      ra
-+  400[0-9a-f]{3}:     27bd0010        addiu   sp,sp,16
--00400158 <__tls_get_addr>:
--  400158:     03e00008        jr      ra
--  40015c:     00000000        nop
-+00400[0-9a-f]{3} <__tls_get_addr>:
-+  400[0-9a-f]{3}:     03e00008        jr      ra
-+  400[0-9a-f]{3}:     00000000        nop
---- binutils-2.23.51.0.5/ld/testsuite/ld-powerpc/tlsexe32.r
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-powerpc/tlsexe32.r
+--- binutils-2.23.52.0.1/ld/testsuite/ld-powerpc/tlsexe32.r
++++ binutils-2.23.52.0.1/ld/testsuite/ld-powerpc/tlsexe32.r
 @@ -33,13 +33,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+
  
  Program Headers:
  
  Relocation section '\.rela\.dyn' at offset .* contains 2 entries:
   Offset +Info +Type +Sym\. Value +Symbol's Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-powerpc/tlsso32.r
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-powerpc/tlsso32.r
+--- binutils-2.23.52.0.1/ld/testsuite/ld-powerpc/tlsso32.r
++++ binutils-2.23.52.0.1/ld/testsuite/ld-powerpc/tlsso32.r
 @@ -35,6 +35,7 @@ Program Headers:
   +LOAD .* RWE 0x10000
   +DYNAMIC .* RW +0x4
  [0-9a-f ]+R_PPC_DTPMOD32 +0
  [0-9a-f ]+R_PPC_DTPREL32 +0
  [0-9a-f ]+R_PPC_DTPMOD32 +0
---- binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlsbin.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlsbin.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlsbin.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlsbin.rd
 @@ -36,6 +36,7 @@ There are [0-9]+ program headers, starting at offset [0-9]+
   +LOAD .* RW +0x1000
   +DYNAMIC .* RW +0x4
  
  Relocation section '.rela.dyn' at offset .* contains 4 entries:
   Offset +Info +Type +Sym.Value +Sym. Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlsbin_64.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlsbin_64.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlsbin_64.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlsbin_64.rd
 @@ -36,6 +36,7 @@ There are [0-9]+ program headers, starting at offset [0-9]+
   +LOAD .* RW +0x1000
   +DYNAMIC .* RW +0x8
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries:
   +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlspic.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlspic.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlspic.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlspic.rd
 @@ -39,6 +39,7 @@ Program Headers:
   +LOAD .* RW +0x1000
   +DYNAMIC .* RW +0x4
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries:
   Offset +Info +Type +Sym.Value +Sym. Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlspic_64.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-s390/tlspic_64.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlspic_64.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-s390/tlspic_64.rd
 @@ -39,6 +39,7 @@ Program Headers:
   +LOAD .* RW +0x1000
   +DYNAMIC .* RW +0x8
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries:
   +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-sh/tlsbin-2.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sh/tlsbin-2.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sh/tlsbin-2.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sh/tlsbin-2.d
 @@ -44,6 +44,7 @@ Program Headers:
   +LOAD.*
   +DYNAMIC.*
  
  Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 4 entries:
   Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-sh/tlspic-2.d
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sh/tlspic-2.d
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sh/tlspic-2.d
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sh/tlspic-2.d
 @@ -32,7 +32,7 @@ Key to Flags:
  
  Elf file type is DYN \(Shared object file\)
  
  Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 10 entries:
   Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/gotop32.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/gotop32.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/gotop32.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/gotop32.rd
 @@ -31,6 +31,7 @@ Program Headers:
   +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x10000
   +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+2000 0x0+2000 RW +0x10000
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 1 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/gotop64.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/gotop64.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/gotop64.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/gotop64.rd
 @@ -31,6 +31,7 @@ Program Headers:
   +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x100000
   +LOAD +0x0+2000 0x0+102000 0x0+102000 0x0+2000 0x0+2000 RW +0x100000
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 1 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunbin32.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunbin32.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunbin32.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunbin32.rd
 @@ -30,13 +30,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+
  
  Program Headers:
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunbin64.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunbin64.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunbin64.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunbin64.rd
 @@ -30,13 +30,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+
  
  Program Headers:
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunnopic32.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunnopic32.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunnopic32.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunnopic32.rd
 @@ -32,6 +32,7 @@ Program Headers:
   +LOAD .* RW +0x10000
   +DYNAMIC .* RW +0x4
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 12 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunnopic64.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunnopic64.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunnopic64.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunnopic64.rd
 @@ -32,6 +32,7 @@ Program Headers:
   +LOAD .* RW +0x100000
   +DYNAMIC .* RW +0x8
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunpic32.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunpic32.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunpic32.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunpic32.rd
 @@ -36,6 +36,7 @@ Program Headers:
   +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+184 0x0+184 RWE 0x10000
   +DYNAMIC +0x0+2060 0x0+12060 0x0+12060 0x0+98 0x0+98 RW +0x4
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunpic64.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-sparc/tlssunpic64.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunpic64.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-sparc/tlssunpic64.rd
 @@ -36,6 +36,7 @@ Program Headers:
   +LOAD +0x0+2000 0x0+102000 0x0+102000 0x0+3a0 0x0+3a0 RWE 0x100000
   +DYNAMIC +0x0+2060 0x0+102060 0x0+102060 0x0+130 0x0+130 RW +0x8
  #...
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries:
---- binutils-2.23.51.0.5/ld/testsuite/ld-x86-64/tlsgdesc.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-x86-64/tlsgdesc.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-x86-64/tlsgdesc.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-x86-64/tlsgdesc.rd
 @@ -36,12 +36,14 @@ Program Headers:
   +LOAD.*
   +LOAD.*
  
  Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 8 entries:
   +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend
---- binutils-2.23.51.0.5/ld/testsuite/ld-x86-64/tlspic.rd
-+++ binutils-2.23.51.0.5/ld/testsuite/ld-x86-64/tlspic.rd
+--- binutils-2.23.52.0.1/ld/testsuite/ld-x86-64/tlspic.rd
++++ binutils-2.23.52.0.1/ld/testsuite/ld-x86-64/tlspic.rd
 @@ -40,6 +40,7 @@ Program Headers:
   +LOAD +0x0+11ac 0x0+2011ac 0x0+2011ac 0x0+244 0x0+244 RW +0x200000
   +DYNAMIC +0x0+1210 0x0+201210 0x0+201210 0x0+130 0x0+130 RW +0x8