Fix typo fsqrt -> sqrtf.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs.t
index 243dfb10bc3c31991058b74dc585c2c84c1bc3b9..283e30c6799af1cab7b755842419ea5bf959f1eb 100644 (file)
@@ -7,7 +7,9 @@ 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/ : { *(.*) }
This page took 0.033733 seconds and 4 git commands to generate.