Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-scripts/align.t
2023-03-06 14:48:14 +01:00

8 lines
237 B
Perl

SECTIONS
{
.text : {*(.text .pr)}
.data ALIGN(0x1000) : AT (ALIGN (LOADADDR (.text) + SIZEOF (.text), 0x80))
{}
ASSERT (LOADADDR(.data) == 0x80, "dyadic ALIGN broken")
ASSERT (ADDR(.data) == 0x1000, "monadic ALIGN broken")
}