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
/
20020819-1.c
blob
549da910cd4fc371f5fa78d730713be432fa16af
1
foo
()
2
{
3
return
0
;
4
}
5
6
main
()
7
{
8
int
i
,
j
,
k
,
ccp_bad
=
0
;
9
10
for
(
i
=
0
;
i
<
10
;
i
++)
11
{
12
for
(
j
=
0
;
j
<
10
;
j
++)
13
if
(
foo
())
14
ccp_bad
=
1
;
15
16
k
=
ccp_bad
!=
0
;
17
if
(
k
)
18
abort
();
19
}
20
21
exit
(
0
);
22
}