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
Update contributors list for update of alpha-vms bfd.
[binutils.git]
/
ld
/
testsuite
/
ld-scripts
/
rgn-over1.t
blob
9c14f706cff7dfa38be051e4be9207cd878db2d0
1
/* Memory region overflow tests: one region, first output sect doesn't fit. */
2
3
MEMORY {
4
bss (rwx) : ORIGIN = 0, LENGTH = 0
5
r1 (rwx) : ORIGIN = 0x1000, LENGTH = 8
6
}
7
_start = 0x1000;
8
SECTIONS {
9
.bss : { *(.bss) } > bss
10
.text : { *(.txt) } > r1
11
.data : { *(.dat) } > r1
12
/DISCARD/ : { *(*) }
13
}