Revert "Fix the test for PR 18963 so that it will work on 16-bit targets."
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / pr18963.t
index 94f8f164d00c041f14f2a663d04f67027dc89be1..830ded78dd916d6f505e1909f8faaef8ca25b4c0 100644 (file)
@@ -1,20 +1,25 @@
 SECTIONS
 {
-  .text 0x300 :
+  . = 0x80000;
+  A = .;
+  .text :
   {
+    _start = .;
     *(.text)
+    . = 0x10000;
   }
-  A = .;
+  B = .;
   .data :
   {
     *(.data)
+    . = 0x10000;
   }
-  B = .;
+  C = .;
   .bss :
   {
     *(.bss)
+    . = 0x10000;
   }
-  C = .;
   D = A - C + B;
   E = A + B - C;
   /DISCARD/ : {*(*)}
This page took 0.030514 seconds and 4 git commands to generate.