Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Nov 12, 2020. It is now read-only.

Commit 3923161

Browse files
committed
don't print out all allocations
1 parent d608810 commit 3923161

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

byterun/memory.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,6 @@ CAMLexport caml_stat_block caml_stat_alloc_noexc(asize_t sz)
907907
/* [sz] is a number of bytes */
908908
CAMLexport caml_stat_block caml_stat_alloc(asize_t sz)
909909
{
910-
printf("allocating: %d\n", sz);
911910
void *result = caml_stat_alloc_noexc(sz);
912911
/* malloc() may return NULL if size is 0 */
913912
if ((result == NULL) && (sz != 0))

0 commit comments

Comments
 (0)