diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-02-14 23:30:55 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-02-14 23:31:47 +0300 |
commit | 453f98914e66b65f7335fb6d24269130c51777be (patch) | |
tree | f3aa643ea739c3c8865cf0bbd8f058de515de0b6 | |
parent | d61ce3202278e9ad251bde0e6075a7d841b7639e (diff) | |
download | micropython-453f98914e66b65f7335fb6d24269130c51777be.tar.gz micropython-453f98914e66b65f7335fb6d24269130c51777be.zip |
zephyr/main: Don't unconditionally dump stats on each GC.
This was a debug output for initial porting, breaks tests.
-rw-r--r-- | zephyr/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |