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
/
execute
/
20000622-1.c
blob
d853ea840865ca3ef558be2a2304276719f83333
1
long
foo
(
long
a
,
long
b
,
long
c
)
2
{
3
if
(
a
!=
12
||
b
!=
1
||
c
!=
11
)
4
abort
();
5
return
0
;
6
}
7
long
bar
(
long
a
,
long
b
)
8
{
9
return
b
;
10
}
11
void
baz
(
long
a
,
long
b
,
void
*
c
)
12
{
13
long
d
;
14
d
= (
long
)
c
;
15
foo
(
d
,
bar
(
a
,
1
),
b
);
16
}
17
int
main
()
18
{
19
baz
(
10
,
11
, (
void
*)
12
);
20
exit
(
0
);
21
}