emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

scratch/native-comp-gcc-driver-options 0992fe5 3/4: * Rename comp-native


From: Andrea Corallo
Subject: scratch/native-comp-gcc-driver-options 0992fe5 3/4: * Rename comp-native-driver-options-available-p
Date: Mon, 24 Aug 2020 04:46:58 -0400 (EDT)

branch: scratch/native-comp-gcc-driver-options
commit 0992fe5ba1dd0af31f163867651414c7d97763b2
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * Rename comp-native-driver-options-available-p
    
        * src/comp.c (Fcomp_native_driver_options_effective_p)
        Rename plus better doc.
        (add_driver_options, syms_of_comp): Rename
        `comp-native-driver-options-available-p' into
        comp-native-driver-options-effective-p.
---
 src/comp.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/comp.c b/src/comp.c
index 7f6bbe3..a553a4b 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4122,10 +4122,12 @@ DEFUN ("comp--release-ctxt", Fcomp__release_ctxt, 
Scomp__release_ctxt,
   return Qt;
 }
 
-DEFUN ("comp-native-driver-options-available-p", 
Fcomp_native_driver_options_available_p,
-       Scomp_native_driver_options_available_p,
+DEFUN ("comp-native-driver-options-effective-p",
+       Fcomp_native_driver_options_effective_p,
+       Scomp_native_driver_options_effective_p,
        0, 0, 0,
-       doc: /* Return t if `comp-native-driver-options' can be used.  */)
+       doc: /* Return t if `comp-native-driver-options' is
+              effective nil otherwise.  */)
   (void)
 {
 #if defined (LIBGCCJIT_HAVE_gcc_jit_context_add_driver_option)  \
@@ -4147,7 +4149,7 @@ add_driver_options (void)
 #if defined (LIBGCCJIT_HAVE_gcc_jit_context_add_driver_option) \
   || defined (WINDOWSNT)
   load_gccjit_if_necessary (true);
-  if (!NILP (Fcomp_native_driver_options_available_p ()))
+  if (!NILP (Fcomp_native_driver_options_effective_p ()))
     FOR_EACH_TAIL (options)
       gcc_jit_context_add_driver_option (comp.ctxt,
                                         SSDATA (XCAR (options)));
@@ -5139,7 +5141,7 @@ native compiled one.  */);
                             "configuration, please recompile"));
 
   defsubr (&Scomp_el_to_eln_filename);
-  defsubr (&Scomp_native_driver_options_available_p);
+  defsubr (&Scomp_native_driver_options_effective_p);
   defsubr (&Scomp__init_ctxt);
   defsubr (&Scomp__release_ctxt);
   defsubr (&Scomp__compile_ctxt_to_file);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]