* cli/cli-dump.c (struct callback_data): load_offset needs to
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / extract-symbol-1.ld
CommitLineData
d3e52d40
RS
1ENTRY(_entry)
2PHDRS
3{
4 data PT_LOAD;
5}
6SECTIONS
7{
8 . = 0x10000;
9 .foo : { *(.foo) } :data
10
11 . = 0x20000;
12 .bar : { *(.bar) } :data
13
14 /DISCARD/ : { *(*) }
15
16 _entry = 0x30000;
17 linker_symbol = 0x40000;
18}
This page took 0.024127 seconds and 4 git commands to generate.