aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/asciz.t
blob: 3aeb7d0c767a868fc84b88e0ac31b0f556d12864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

_start = 0x000000;
SECTIONS
{
  . = 0x1000 + SIZEOF_HEADERS;
  
  .data : AT (0x10000)
  {
      ASCIZ "This is a string"
      ASCIZ "This is another\n\123tring"
      ASCIZ ""
      ASCIZ noquotes
  }
  
  /DISCARD/ : { *(*) }
}