Nicholas Nethercote 4ddcff03b9 Merged r9101 (make Massif tests work if VG_MIN_MALLOC_SZB==16) from the
DARWIN branch, along with a few other minor things.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9197
2009-02-18 05:14:44 +00:00

11 lines
154 B
C

#include <stdlib.h>
int main(void)
{
int i;
for (i = 0; i < 200; i++) {
malloc(400*i); // Divisible by 16 -- no slop.
}
return 0;
}