diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-03-31 22:11:08 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-03-31 22:11:08 +0300 |
commit | 8d550700c535dbcd4721cc65c0a11decbf070abb (patch) | |
tree | cb04f6609c63cfb4d00ac1659ac9455120c09015 | |
parent | 8e524f459149dfd83e2205d24c174074b10d5c6a (diff) | |
download | emacs-8d550700c535dbcd4721cc65c0a11decbf070abb.tar.gz emacs-8d550700c535dbcd4721cc65c0a11decbf070abb.tar.bz2 emacs-8d550700c535dbcd4721cc65c0a11decbf070abb.zip |
* src/comp.c (Fcomp__compile_ctxt_to_file): Fix debug level 1.
-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 a87a8f30c35..eb734d5833d 100644 --- a/src/comp.c +++ b/src/comp.c @@ -4493,7 +4493,7 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file, add_driver_options (); - if (comp.debug >= 1) + if (comp.debug > 1) gcc_jit_context_dump_to_file (comp.ctxt, format_string ("%s.c", SSDATA (ebase_name)), 1); |