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
Updated Malay translation for the bfd sub-directory
[binutils-gdb.git]
/
gold
/
testsuite
/
pr14265.t
blob
e6d163af5ca86a2a38b1cbb0b03c2380fdcf2cf9
1
SECTIONS
2
{
3
.text : { *(.text) }
4
5
__foo0_start = .;
6
.foo0 : { *(.foo0.*) }
7
__foo0_end = .;
8
9
__foo1_start = .;
10
.foo1 : { KEEP(*(.foo1.*)) }
11
__foo1_end = .;
12
13
.foo2 : {
14
__foo2_start = .;
15
KEEP(*(.foo2.*))
16
__foo2_end = .;
17
}
18
19
.got : { *(.got .toc) }
20
}
21
22
23
ASSERT (__foo1_start < __foo1_end, "foo1 not KEPT");
24
ASSERT ((__foo1_end - __foo1_start) == (__foo2_end - __foo2_start),"foo2 not KEPT");
25