repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ppc64: Arguments to iselInt128Expr_to_32x4 should be initialized.
[valgrind.git]
/
memcheck
/
tests
/
trivialleak.c
blob
7ffcb8735c9848ffe3844a10a99189901d6638f6
1
#include <stdlib.h>
2
3
static void
test
()
4
{
5
void
*
leak
__attribute__
((
unused
));
6
int
i
;
7
for
(
i
=
0
;
i
<
1000
;
i
++)
8
leak
= (
void
*)
malloc
(
1
);
9
}
10
int
main
()
11
{
12
test
();
13
return
0
;
14
}