source: trunk/binutils/ld/testsuite/ld-scripts/sizeof.t@ 2795

Last change on this file since 2795 was 10, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 243 bytes
Line 
1SECTIONS {
2 .text :
3 {
4 text_start = .;
5 tmpdir/sizeof.o
6 text_end = .;
7 }
8 .data :
9 {
10 data_start = .;
11 . = . + SIZEOF(.text);
12 data_end = .;
13 }
14}
15
16sizeof_text = SIZEOF(.text);
17sizeof_data = SIZEOF(.data);
Note: See TracBrowser for help on using the repository browser.