mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
362c1d1a04
* ldexp.c (exp_print_token, foldname): Likewise. * ld.texinfo: Likewise. ld/testsuite/ * ld-scripts/alignof.s: New. * ld-scripts/alignof.t: New * ld-scripts/alignof.exp: New.
16 lines
231 B
Raku
16 lines
231 B
Raku
SECTIONS {
|
|
.text :
|
|
{
|
|
tmpdir/alignof.o (.text)
|
|
}
|
|
.data :
|
|
{
|
|
tmpdir/alignof.o (.data)
|
|
LONG (ALIGNOF(.text))
|
|
LONG (ALIGNOF(.data))
|
|
}
|
|
}
|
|
|
|
alignof_text = ALIGNOF(.text);
|
|
alignof_data = ALIGNOF(.data);
|