1SECTIONS
2{
3  . = SIZEOF_HEADERS;
4  .data : { *(.data) }
5  .rodata : { *(.rodata) }
6
7  /* The .rel* sections are typically placed here, because of the way
8     elf.em handles orphaned sections.  A bug introduced on 2002-06-10
9     would cause . to be 0 at this point.  */
10
11  _bar = ASSERT (. > 0, "Bad . value");
12}
13