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-gc
/
pr13683.c
blob
c585e06db51cf87316ff4bb96f8169cdbcc157c7
1
void
foo
(
void
);
2
3
int
main
(
void
)
4
{
5
foo
();
6
7
for
(;;)
8
;
9
}
10
11
int
a
;
12
13
void
foo1
(
void
)
14
{
15
a
=
1
;
16
}
17
18
void
foo2
(
void
)
19
{
20
a
=
2
;
21
}
22
23
void
foo3
(
void
)
24
{
25
a
=
3
;
26
}
27
28