~ chicken-core (chicken-5) de45c0636b35f9faf7605c51286e51dc80dd3424
commit de45c0636b35f9faf7605c51286e51dc80dd3424 Author: Evan Hanson <evhan@foldling.org> AuthorDate: Mon Sep 5 22:37:03 2016 +1200 Commit: Evan Hanson <evhan@foldling.org> CommitDate: Sat Sep 10 22:58:18 2016 +1200 Trace temp stack resizing with "-:g" rather than "-:d" diff --git a/runtime.c b/runtime.c index b6da5e42..1b39f46a 100644 --- a/runtime.c +++ b/runtime.c @@ -3212,7 +3212,7 @@ void C_save_and_reclaim(void *trampoline, int n, C_word *av) panic(C_text("fixed temporary stack overflow (\"apply\" called with too many arguments?)")); if(gc_report_flag) { - C_dbg(C_text("debug"), C_text("resizing temporary stack dynamically from " UWORD_COUNT_FORMAT_STRING "k to " UWORD_COUNT_FORMAT_STRING "k ...\n"), + C_dbg(C_text("GC"), C_text("resizing temporary stack dynamically from " UWORD_COUNT_FORMAT_STRING "k to " UWORD_COUNT_FORMAT_STRING "k ...\n"), C_wordstobytes(temporary_stack_size) / 1024, C_wordstobytes(new_size) / 1024); }Trap