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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
calls.c
blob
1582c0e92fa9191412eaff41ed8f562ee11e95b2
1
typedef
void
*(*
T
)(
void
);
2
f1
()
3
{
4
((
T
)
0
)();
5
}
6
f2
()
7
{
8
((
T
)
1000
)();
9
}
10
f3
()
11
{
12
((
T
)
10000000
)();
13
}
14
f4
(
r
)
15
{
16
((
T
)
r
)();
17
}
18
f5
()
19
{
20
int
(*
r
)() =
f3
;
21
((
T
)
r
)();
22
}