This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix ld-elf/orphan testcase for mips


Hello All,

this patch places the mips .reginfo section explicitely in the linker
script, it messed up the orphan placement test.

Ok to apply for trunk and branch?


Thiemo


2006-05-16  Thiemo Seufer  <ths@mips.com>

	* ld-elf/orphan.ld: Add placement for MIPS .reginfo section.


Index: ld/testsuite/ld-elf/orphan.ld
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-elf/orphan.ld,v
retrieving revision 1.1
diff -u -p -r1.1 orphan.ld
--- ld/testsuite/ld-elf/orphan.ld	21 Oct 2005 21:18:05 -0000	1.1
+++ ld/testsuite/ld-elf/orphan.ld	16 May 2006 11:42:02 -0000
@@ -4,4 +4,5 @@ SECTIONS
   .data : { *(.data) }
   .bss : { *(.bss) *(COMMON) }
   .note : { *(.note) }
+  .reginfo : { *(.reginfo) }
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]