diff options
| author | Andrea Corallo | 2020-05-03 20:34:03 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-05-14 21:50:32 +0100 |
| commit | 6eb14daccf0e3045fbbc858b4d3aeb3006f14e60 (patch) | |
| tree | 51249e78f4a887dc56bad642a950a937d321e8f6 | |
| parent | 2ee2fb5a86a8933b1105a1dc5b597ebb8ce57e40 (diff) | |
| download | emacs-6eb14daccf0e3045fbbc858b4d3aeb3006f14e60.tar.gz emacs-6eb14daccf0e3045fbbc858b4d3aeb3006f14e60.zip | |
* 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.
| -rw-r--r-- | src/comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
| 3233 | GCC_JIT_BOOL_OPTION_DEBUGINFO, | 3233 | GCC_JIT_BOOL_OPTION_DEBUGINFO, |
| 3234 | 1); | 3234 | 1); |
| 3235 | } | 3235 | } |
| 3236 | if (COMP_DEBUG > 1) | 3236 | if (COMP_DEBUG > 2) |
| 3237 | { | 3237 | { |
| 3238 | logfile = fopen ("libgccjit.log", "w"); | 3238 | logfile = fopen ("libgccjit.log", "w"); |
| 3239 | gcc_jit_context_set_logfile (comp.ctxt, | 3239 | gcc_jit_context_set_logfile (comp.ctxt, |