]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - ld/testsuite/ld-scripts/phdrs.t
* elfxx-tilegx.c (tilegx_elf_relocate_section): Silence bogus warning.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs.t
index 8f710e23fdcc2bca22b230e03b1c9faf15f0ae70..283e30c6799af1cab7b755842419ea5bf959f1eb 100644 (file)
@@ -7,8 +7,10 @@ PHDRS
 
 SECTIONS
 {
-  . = 0x80000 + SIZEOF_HEADERS;
+  /* This test will fail on architectures where the startaddress below
+     is less than the constant MAXPAGESIZE.  */
+  . = 0x800000 + SIZEOF_HEADERS;
   .text : { *(.text) } :text
   .data : { *(.data) } :data
-  /DISCARD/ : { *(.reginfo) }
+  /DISCARD/ : { *(.*) }
 }