Browse Source
PR 19457 * testsuite/ld-scripts/script.exp (extract_symbol_test): Stop test early for PE based targets. * testsuite/ld-scripts/align.t: Use 0x1000 as VMA alignment. * testsuite/ld-pe/tlssec32.d: Allow for relocatable output.gdb-7.11-branch
4 changed files with 20 additions and 3 deletions
@ -1,3 +1,3 @@ |
|||
#... |
|||
Entry 9 00003000 00000018 Thread Storage Directory \[\.tls\] |
|||
Entry 9 0000.000 000000.. Thread Storage Directory \[\.tls\] |
|||
#... |
|||
|
|||
@ -1,8 +1,8 @@ |
|||
SECTIONS |
|||
{ |
|||
.text : {*(.text)} |
|||
.data ALIGN(0x40) : AT (ALIGN (LOADADDR (.text) + SIZEOF (.text), 0x80)) |
|||
.data ALIGN(0x1000) : AT (ALIGN (LOADADDR (.text) + SIZEOF (.text), 0x80)) |
|||
{} |
|||
ASSERT (LOADADDR(.data) == 0x80, "dyadic ALIGN broken") |
|||
ASSERT (ADDR(.data) == 0x40, "monadic ALIGN broken") |
|||
ASSERT (ADDR(.data) == 0x1000, "monadic ALIGN broken") |
|||
} |
|||
|
|||
Loading…
Reference in new issue