aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/empty-address-4.t
blob: bb0c2f6aebc07d13abac1468311cf24b72b8a2cc (plain)
1
2
3
4
5
6
7
8
9
10
11
SECTIONS
{
  .text 0: { *(.text .pr) }
  .data 0x200:
  {
    *(.data)
    ASSERT (. < 0x400, oops);
  }
  .bss : { *(.bss) }
  /DISCARD/ : { *(*) }
}