mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 22:44:46 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15072 a95241bf-73f2-0310-859d-f6bbb57e9c96
9 lines
229 B
Perl
9 lines
229 B
Perl
SECTIONS
|
|
{
|
|
.text : {*(.text)}
|
|
.data ALIGN(0x40) : AT (ALIGN (LOADADDR (.text) + SIZEOF (.text), 0x80))
|
|
{}
|
|
ASSERT (LOADADDR(.data) == 0x80, "dyadic ALIGN broken")
|
|
ASSERT (ADDR(.data) == 0x40, "monadic ALIGN broken")
|
|
}
|