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
Merge reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
unsorted
/
mregtst.c
blob
b6bb6c21f55e9a89e2a759597de112d59aeec958
1
foo
(
a
,
p
)
2
int
*
p
;
3
{
4
int
old
,
new
,
i
;
5
6
old
=
0
;
7
for
(
i
=
1
;
i
<
100
;
i
++)
8
{
9
new
=
p
[
i
];
10
if
(
new
<
old
)
11
a
++;
12
old
=
new
;
13
if
(
old
==
0
)
14
return
0
;
15
}
16
return
a
;
17
}