repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
external
/
gpl3
/
binutils
/
dist
/
ld
/
testsuite
/
ld-gc
/
gc.c
blob
6b356ad0aa5135f01a5bb1e6b4aec6373ab4fe85
1
int
unused_var
=
7
;
2
int
used_var
=
7
;
3
4
int
5
unused_func
(
int
v
)
6
{
7
return
3
*
unused_var
;
8
}
9
10
int
11
__attribute__
((
noinline
))
12
used_func
(
int
v
)
13
{
14
return
2
*
used_var
;
15
}
16
17
int
18
main
(
void
)
19
{
20
return
used_func
(
5
);
21
}