gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / testsuite / script_test_9.t
1 PHDRS
2 {
3 text PT_LOAD FLAGS(5);
4 data PT_LOAD FLAGS(6);
5 tls PT_TLS;
6 }
7
8 SECTIONS
9 {
10 .init :
11 {
12 } :text
13 .text :
14 {
15 }
16 .data :
17 {
18 } :data
19 .got : { *(.got .toc) }
20 .tdata :
21 {
22 *(.tdata*)
23 } :data :tls
24 .tbss :
25 {
26 *(.tbss*)
27 } :data :tls
28 }
This page took 0.031479 seconds and 4 git commands to generate.