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]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000731-1.c
blob
787c29a3b3b6c37dc2ae6becc49b9b764279b2f0
1
double
2
foo
(
void
)
3
{
4
return
0.0
;
5
}
6
7
void
8
do_sibcall
(
void
)
9
{
10
(
void
)
foo
();
11
}
12
13
int
14
main
(
void
)
15
{
16
double
x
;
17
18
for
(
x
=
0
;
x
<
20
;
x
++)
19
do_sibcall
();
20
if
(!(
x
>=
10
))
21
abort
();
22
exit
(
0
);
23
}
24