Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
mregtst.c
blob: b6bb6c21f55e9a89e2a759597de112d59aeec958 [
file
] [
log
] [
blame
]
foo
(
a
,
p
)
int
*
p
;
{
int
old
,
new
,
i
;
old
=
0
;
for
(
i
=
1
;
i
<
100
;
i
++)
{
new
=
p
[
i
];
if
(
new
<
old
)
a
++;
old
=
new
;
if
(
old
==
0
)
return
0
;
}
return
a
;
}