repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git]
/
ld
/
testsuite
/
ld-arm
/
discard-unwind.ld
blob
d8f6524aa9f8ce86dca9b5a8a4e0d6d2244d2b10
1
/* Script for ld testsuite */
2
OUTPUT_ARCH(arm)
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
*(.ARM.extab*)
14
*(.glue_7)
15
*(.v4_bx)
16
} =0
17
/DISCARD/ : { *(.ARM.exidx*) }
18
.ARM.attribues 0 : { *(.ARM.atttributes) }
19
}