PR24511, nm should not mark symbols in .init_array as "t"
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / pr18963.t
index b0cd7421eb61662d57eec4cec83e8e9442652c77..830ded78dd916d6f505e1909f8faaef8ca25b4c0 100644 (file)
@@ -5,16 +5,19 @@ SECTIONS
   .text :
   {
     _start = .;
+    *(.text)
     . = 0x10000;
   }
   B = .;
   .data :
   {
+    *(.data)
     . = 0x10000;
   }
   C = .;
   .bss :
   {
+    *(.bss)
     . = 0x10000;
   }
   D = A - C + B;
This page took 0.02508 seconds and 4 git commands to generate.