New Cell SPU port.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / loadaddr2.t
1 SECTIONS
2 {
3 . = -0x7ff00000;
4 .text : {*(.text .text.*)}
5 . = ALIGN(64);
6 .foo : { *(.foo) }
7 .bar -0x7fef0000 : AT ((LOADADDR(.foo) + SIZEOF(.foo) + 4095) & ~(4095))
8 { *(.bar) }
9 . = LOADADDR(.bar) + 0x200000;
10 . = ALIGN(8192);
11 .data : AT (ADDR(.data)) { *(.data) }
12 /DISCARD/ : { *(.*) }
13 }
This page took 0.029998 seconds and 4 git commands to generate.