repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-aarch64
/
aarch64.ld
blob
75ee3b589346539bd5680398af3245b33ca8b13e
1
/* Script for ld testsuite */
2
OUTPUT_ARCH(aarch64)
3
ENTRY(_start)
4
SECTIONS
5
{
6
/* Read-only sections, merged into text segment: */
7
PROVIDE (__executable_start = 0x8000); . = 0x8000;
8
.text :
9
{
10
*(.before)
11
*(.text)
12
*(.after)
13
} =0
14
. = 0x9000;
15
.got : { *(.got) *(.got.plt)}
16
. = 0x12340000;
17
.far : { *(.far) }
18
.ARM.attributes 0 : { *(.ARM.atttributes) }
19
}