[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
feature/native-comp 0da62d9 01/11: Change parameter name into comp--comp
From: |
Andrea Corallo |
Subject: |
feature/native-comp 0da62d9 01/11: Change parameter name into comp--compile-ctxt-to-file |
Date: |
Wed, 4 Mar 2020 12:08:30 -0500 (EST) |
branch: feature/native-comp
commit 0da62d94e2a167d5ccfd8ece03623afdc178154c
Author: AndreaCorallo <address@hidden>
Commit: AndreaCorallo <address@hidden>
Change parameter name into comp--compile-ctxt-to-file
---
src/comp.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/comp.c b/src/comp.c
index 0b7b2b9..9dcd554 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -3212,9 +3212,9 @@ DEFUN ("comp--compile-ctxt-to-file",
Fcomp__compile_ctxt_to_file,
Scomp__compile_ctxt_to_file,
1, 1, 0,
doc: /* Compile as native code the current context to file. */)
- (Lisp_Object ctxtname)
+ (Lisp_Object base_name)
{
- CHECK_STRING (ctxtname);
+ CHECK_STRING (base_name);
gcc_jit_context_set_int_option (comp.ctxt,
GCC_JIT_INT_OPTION_OPTIMIZATION_LEVEL,
@@ -3261,16 +3261,16 @@ DEFUN ("comp--compile-ctxt-to-file",
Fcomp__compile_ctxt_to_file,
if (COMP_DEBUG)
gcc_jit_context_dump_to_file (comp.ctxt,
- format_string ("%s.c", SSDATA (ctxtname)),
+ format_string ("%s.c", SSDATA (base_name)),
1);
if (COMP_DEBUG > 2)
gcc_jit_context_dump_reproducer_to_file (comp.ctxt, "comp_reproducer.c");
AUTO_STRING (dot_so, NATIVE_ELISP_SUFFIX);
- Lisp_Object out_file = CALLN (Fconcat, ctxtname, dot_so);
+ Lisp_Object out_file = CALLN (Fconcat, base_name, dot_so);
Lisp_Object tmp_file =
- Fmake_temp_file_internal (ctxtname, Qnil, dot_so, Qnil);
+ Fmake_temp_file_internal (base_name, Qnil, dot_so, Qnil);
gcc_jit_context_compile_to_file (comp.ctxt,
GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY,
SSDATA (tmp_file));
- feature/native-comp updated (0cef208 -> 6487d4a), Andrea Corallo, 2020/03/04
- feature/native-comp 8788fab 03/11: ; Nit fix in comment, Andrea Corallo, 2020/03/04
- feature/native-comp ce9e3a4 05/11: Introduce 'effective_load_path', Andrea Corallo, 2020/03/04
- feature/native-comp 0da62d9 01/11: Change parameter name into comp--compile-ctxt-to-file,
Andrea Corallo <=
- feature/native-comp 2dae7e1 02/11: Add system-configuration in the compilation output path, Andrea Corallo, 2020/03/04
- feature/native-comp d0066e3 04/11: * Keep comp-subr-list into pure space, Andrea Corallo, 2020/03/04
- feature/native-comp bf4f620 06/11: * ; Clean-up out of date comment, Andrea Corallo, 2020/03/04
- feature/native-comp 43b6f05 09/11: Hash eln ABI once and add it to the output compilation path, Andrea Corallo, 2020/03/04
- feature/native-comp f77f6ca 08/11: Fix org for eln new compilation folder layout, Andrea Corallo, 2020/03/04
- feature/native-comp 1f3ba65 10/11: * Do not crash if the output directory is created in the meanwhile, Andrea Corallo, 2020/03/04
- feature/native-comp 286e21c 07/11: Rework `find-lisp-object-file-name', Andrea Corallo, 2020/03/04
- feature/native-comp 6487d4a 11/11: Merge remote-tracking branch 'savannah/master' into HEAD, Andrea Corallo, 2020/03/04