From 6eb14daccf0e3045fbbc858b4d3aeb3006f14e60 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 3 May 2020 20:34:03 +0100 Subject: [PATCH] * Dump log and intemediate GCC IRs only at comp-debug 3 * src/comp.c (Fcomp__init_ctxt): Increase threshold for dumping really everything to 'comp-debug' 3. --- src/comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp.c b/src/comp.c index c88c9f3f481..e18bace6683 100644 --- a/src/comp.c +++ b/src/comp.c @@ -3233,7 +3233,7 @@ DEFUN ("comp--init-ctxt", Fcomp__init_ctxt, Scomp__init_ctxt, GCC_JIT_BOOL_OPTION_DEBUGINFO, 1); } - if (COMP_DEBUG > 1) + if (COMP_DEBUG > 2) { logfile = fopen ("libgccjit.log", "w"); gcc_jit_context_set_logfile (comp.ctxt, -- 2.39.5