From 453f98914e66b65f7335fb6d24269130c51777be Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 14 Feb 2017 23:30:55 +0300 Subject: [PATCH] zephyr/main: Don't unconditionally dump stats on each GC. This was a debug output for initial porting, breaks tests. --- zephyr/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/main.c b/zephyr/main.c index a11a6dbdab..d6980ad295 100644 --- a/zephyr/main.c +++ b/zephyr/main.c @@ -126,7 +126,7 @@ void gc_collect(void) { gc_collect_start(); gc_collect_root(&dummy, ((mp_uint_t)stack_top - (mp_uint_t)&dummy) / sizeof(mp_uint_t)); gc_collect_end(); - gc_dump_info(); + //gc_dump_info(); } mp_lexer_t *mp_lexer_new_from_file(const char *filename) {