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
Fix warnings occured during profiledboostrap on
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
memtst.c
blob
b5ef2607073fbb38a99411dfa9f2740747aa8296
1
#ifdef STACK_SIZE
2
#define SIZE STACK_SIZE / 8
3
#else
4
#define SIZE 65536
5
#endif
6
7
memtst
(
int
*
p
,
int
a
)
8
{
9
do
10
{
11
if
(
p
[
a
] ==
1
)
12
break
;
13
}
14
while
(--
a
);
15
}
16
17
main
()
18
{
19
int
a
[
SIZE
];
20
int
i
;
21
bzero
(
a
,
SIZE
*
4
);
22
for
(
i
=
0
;
i
<
100
;
i
++)
23
{
24
memtst
(
a
,
SIZE
);
25
}
26
}