repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix unused warnings.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
930325-1.c
blob
24cea5027ab55ad9e35ed952dc9069434016a124
1
typedef
unsigned
uint
;
2
3
inline
4
g
(
uint
*
s
,
uint
*
d
,
uint c
)
5
{
6
while
(
c
!=
0
)
7
{
8
*--
d
= *--
s
;
9
c
--;
10
}
11
}
12
13
f
(
uint
*
p1
,
uint c
,
uint
*
p2
)
14
{
15
while
(
c
>
0
&& *
p1
==
0
)
16
{
17
p1
++;
18
c
--;
19
}
20
if
(
c
==
0
)
21
return
1
;
22
g
(
p2
,
p1
,
c
);
23
}