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
/
950714-1.c
blob
5dc44a906e2948ace252f52df6b884ba5b0bf540
1
int
array
[
10
] = {
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
,
1
};
2
3
main
()
4
{
5
int
i
,
j
;
6
int
*
p
;
7
8
for
(
i
=
0
;
i
<
10
;
i
++)
9
for
(
p
= &
array
[
0
];
p
!= &
array
[
9
];
p
++)
10
if
(*
p
==
i
)
11
goto
label
;
12
13
label
:
14
if
(
i
!=
1
)
15
abort
();
16
exit
(
0
);
17
}