repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed bash/dash/sh issue (Ubuntu)
[zpugcc/jano.git]
/
toolchain
/
binutils
/
ld
/
testsuite
/
ld-empic
/
relax1.c
blob
20ec39efc9c10be6ac2d1984d86749617ca1d081
1
/* First source file in relaxation test. */
2
3
extern
int
bar
();
4
static int
foo2
();
5
6
int
foo
(
int
i
)
7
{
8
switch
(
i
)
9
{
10
case
0
:
bar
(
0
);
break
;
11
case
1
:
bar
(
1
);
break
;
12
case
2
:
bar
(
2
);
break
;
13
case
3
:
bar
(
3
);
break
;
14
case
4
:
bar
(
foo2
);
break
;
15
case
5
:
bar
(
bar
);
break
;
16
}
17
while
(
1
)
18
if
(
i
)
19
return
bar
();
20
}
21
22
static int
foo2
() { }