Retro68/binutils/ld/testsuite/ld-scripts/provide-1.t

13 lines
146 B
Perl
Raw Normal View History

2012-03-26 19:18:29 +00:00
SECTIONS
{
.data 0x2000 :
{
LONG (foo)
LONG (bar)
. = ALIGN (0x10);
*(.data)
}
PROVIDE (foo = .);
PROVIDE (bar = .);
}