mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-20 15:53:29 +08:00
7d6de425da
PR 22465 * testsuite/ld-elf/interleave.s: Use .data sections and provide section attrs. * testsuite/ld-elf/interleave.ld: Discard other sections. Adjust for changed section names.
12 lines
177 B
Plaintext
12 lines
177 B
Plaintext
MEMORY
|
|
{
|
|
x0(xrw): ORIGIN = 0x0, LENGTH = 8
|
|
x1(xrw): ORIGIN = 0xC, LENGTH = 8
|
|
}
|
|
SECTIONS
|
|
{
|
|
.a0 : { *(.data.a0) } > x0
|
|
.a1 : { *(.data.a1) } > x1
|
|
/DISCARD/ : { *(*) }
|
|
}
|