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
PR ld/12001
[binutils.git]
/
ld
/
testsuite
/
ld-scripts
/
rgn-over2.t
blob
b38a9c10e21ac2c9531701985732b26ca6ca900f
1
/* Memory region overflow tests: one region, first output sect fits,
2
second doesn't. */
3
4
MEMORY {
5
bss (rwx) : ORIGIN = 0, LENGTH = 0
6
r1 (rwx) : ORIGIN = 0x1000, LENGTH = 20
7
}
8
_start = 0x1000;
9
SECTIONS {
10
.bss : { *(.bss) } > bss
11
.text : { *(.txt) } > r1
12
.data : { *(.dat) } > r1
13
/DISCARD/ : { *(*) }
14
}