blob: 809ff4c3ff4fce66abadfa927df5e430c0d902ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
SECTIONS
{
.empty : {
here = !.;
ASSERT (!., "dot is not zero");
ASSERT (here, "here is zero");
}
ASSERT (!SIZEOF(.empty), "Empty is not empty")
/DISCARD/ : { *(.reginfo) }
}
|