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-selective
/
2.c
blob
729588760c3d96e37b3ebb38c5c029b6017e4393
1
/* Normally we should loose foo and keep _start and _init.
2
With -u foo, we should keep that as well. */
3
4
void
_start
()
__asm__
(
"_start"
);
5
void
_start
()
6
{
7
}
8
9
void
__attribute__
((
section
(
".init"
)))
10
_init
()
11
{
12
}
13
14
int
foo
()
__asm__
(
"foo"
);
15
int
foo
()
16
{
17
static int
x
=
1
;
18
return
x
++;
19
}