summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/alignof.t
blob: 12411121f167871ec5d6274f3dba6e5fe622d295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SECTIONS {
	.text :
	  {
	    tmpdir/alignof.o (.text)
	  }
	.data : 
	  { 
	    tmpdir/alignof.o (.data)
	    LONG (ALIGNOF(.text))
	    LONG (ALIGNOF(.data))
	  }
}	

alignof_text = ALIGNOF(.text);
alignof_data = ALIGNOF(.data);