ubsan: alpha-vms: shift exponent is too large
[deliverable/binutils-gdb.git] / gold / testsuite / script_test_3.t
index 1dbbfa33e5e06a51a4b945b210e8abb4661db2c3..59c804abe9370f5dfb1c796fb73ffd2b03f5e375 100644 (file)
@@ -1,6 +1,6 @@
 /* script_test_3.t -- linker script test 3 for gold
 
-   Copyright 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008-2019 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <iant@google.com>.
 
    This file is part of gold.
@@ -28,8 +28,19 @@ SECTIONS
   /* With luck this will be enough to get the program working.  */
   .interp : { *(.interp) } :text :interp
   .text : { *(.text) } :text
-  .dynamic : { *(.dynamic) } :text :dynamic
+  /* Required by the ARM target. */
+  .ARM.extab : { *(.ARM.extab*) }
+  .ARM.exidx : { *(.ARM.exidx*) }
+  . += 0x100000;
+  . = ALIGN(0x100);
+  .dynamic : { *(.dynamic) } :data :dynamic
   .data : { *(.data) } :data
+  .got : { *(.got .toc) }
+  .got.plt : { *(.got.plt) } 
+  .tdata : { *(.tdata*) } :data :tls
+  .tbss : { *(.tbss*) } :data :tls
+  . += 0x100000;
+  . = ALIGN(0x100000);
   .bss : { *(.bss) } :bss
 }
 
@@ -40,4 +51,5 @@ PHDRS
   dynamic PT_DYNAMIC FLAGS(4);
   data PT_LOAD;
   bss PT_LOAD;
+  tls PT_TLS;
 }
This page took 0.036015 seconds and 4 git commands to generate.