aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2020-09-06 18:20:00 +0200
committerAndrea Corallo2020-09-06 18:20:00 +0200
commit3a9139d197ea1a211b64ca70e1f7e1f0545a4424 (patch)
tree0e8f57609bfbe533fec96300283b874d75b7d125 /src
parent3df471e1f4723cc0d860b31f5153ee8e47503e34 (diff)
downloademacs-3a9139d197ea1a211b64ca70e1f7e1f0545a4424.tar.gz
emacs-3a9139d197ea1a211b64ca70e1f7e1f0545a4424.zip
* src/comp.c (Fcomp__compile_ctxt_to_file): Rename a variable.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index ddecacd74e7..70bb560da63 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4353,10 +4353,10 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file,
4353 if (COMP_DEBUG > 2) 4353 if (COMP_DEBUG > 2)
4354 gcc_jit_context_dump_reproducer_to_file (comp.ctxt, "comp_reproducer.c"); 4354 gcc_jit_context_dump_reproducer_to_file (comp.ctxt, "comp_reproducer.c");
4355 4355
4356 AUTO_STRING (dot_so, NATIVE_ELISP_SUFFIX); 4356 AUTO_STRING (dot_eln, NATIVE_ELISP_SUFFIX);
4357 4357
4358 Lisp_Object tmp_file = 4358 Lisp_Object tmp_file =
4359 Fmake_temp_file_internal (base_name, Qnil, dot_so, Qnil); 4359 Fmake_temp_file_internal (base_name, Qnil, dot_eln, Qnil);
4360 gcc_jit_context_compile_to_file (comp.ctxt, 4360 gcc_jit_context_compile_to_file (comp.ctxt,
4361 GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY, 4361 GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY,
4362 SSDATA (tmp_file)); 4362 SSDATA (tmp_file));