summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/expr2.t
blob: 634eab26a9ee58a3aac7dee3b0f0b1ccf676f101 (plain)
1
2
3
4
5
6
7
8
9
10
11
SECTIONS
{
  . = 0xc000;
  .text :
  {
    _text = .;
    *(.text)
  }
  _end = .;
}
ASSERT (_end - _text <= 0x100, "fail");