repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
951003-1.c
blob
269bf13538617f60f1e3bc485925c3f1d04213eb
1
int
f
(
i
) {
return
12
; }
2
int
g
() {
return
0
; }
3
4
main
()
5
{
6
int
i
,
s
;
7
8
for
(
i
=
0
;
i
<
32
;
i
++)
9
{
10
s
=
f
(
i
);
11
12
if
(
i
==
g
())
13
s
=
42
;
14
if
(
i
==
0
||
s
==
12
)
15
;
16
else
17
abort
();
18
}
19
20
exit
(
0
);
21
}