* testsuite/script_test_9.t: Add TLS segment.

This commit is contained in:
Cary Coutant 2011-03-02 21:59:36 +00:00
parent 2d5657570d
commit 89243142dc
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2011-03-02 Cary Coutant <ccoutant@google.com>
* testsuite/script_test_9.t: Add TLS segment.
2011-03-02 Simon Baldwin <simonb@google.com>
* configure.ac: Add check for gnu_indirect_function support in

View file

@ -2,6 +2,7 @@ PHDRS
{
text PT_LOAD FLAGS(5);
data PT_LOAD FLAGS(6);
tls PT_TLS;
}
SECTIONS
@ -15,4 +16,12 @@ SECTIONS
.data :
{
} :data
.tdata :
{
*(.tdata*)
} :data :tls
.tbss :
{
*(.tbss*)
} :data :tls
}