aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/empty-address-4.t
blob: f25bbfea8ac20ea800913bf175439e8229ce15f3 (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/ : { *(.*) }
}