summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/gold/testsuite/script_test_9.t
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.25/gold/testsuite/script_test_9.t')
-rw-r--r--binutils-2.25/gold/testsuite/script_test_9.t28
1 files changed, 28 insertions, 0 deletions
diff --git a/binutils-2.25/gold/testsuite/script_test_9.t b/binutils-2.25/gold/testsuite/script_test_9.t
new file mode 100644
index 00000000..e7138b27
--- /dev/null
+++ b/binutils-2.25/gold/testsuite/script_test_9.t
@@ -0,0 +1,28 @@
+PHDRS
+{
+ text PT_LOAD FLAGS(5);
+ data PT_LOAD FLAGS(6);
+ tls PT_TLS;
+}
+
+SECTIONS
+{
+ .init :
+ {
+ } :text
+ .text :
+ {
+ }
+ .data :
+ {
+ } :data
+ .got : { *(.got .toc) }
+ .tdata :
+ {
+ *(.tdata*)
+ } :data :tls
+ .tbss :
+ {
+ *(.tbss*)
+ } :data :tls
+}