emacs-diffs
[Top][All Lists]
Advanced

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

feature/native-comp bd8be64 1/2: * Fix --enable-check-lisp-object-type G


From: Andrea Corallo
Subject: feature/native-comp bd8be64 1/2: * Fix --enable-check-lisp-object-type GNU/Linux X86_64 build
Date: Sat, 9 May 2020 15:10:30 -0400 (EDT)

branch: feature/native-comp
commit bd8be64ce3f314c152d009f5bf88bcfadf6daef7
Author: Andrea Corallo <address@hidden>
Commit: Andrea Corallo <address@hidden>

    * Fix --enable-check-lisp-object-type GNU/Linux X86_64 build
    
        * src/comp.c (emit_mvar_val): Fix missing use of XLP macro.
        (load_comp_unit): Fix missing use of NILP macro.
---
 src/comp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/comp.c b/src/comp.c
index d021be4..768172b 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -1343,7 +1343,7 @@ emit_mvar_val (Lisp_Object mvar)
          word =
            gcc_jit_context_new_rvalue_from_ptr (comp.ctxt,
                                                 comp.void_ptr_type,
-                                                constant);
+                                                XLP (constant));
 #endif
          return emit_coerce (comp.lisp_obj_type, word);
        }
@@ -3564,7 +3564,7 @@ load_comp_unit (struct Lisp_Native_Comp_Unit *comp_u, 
bool loading_dump,
   Lisp_Object *saved_cu = dynlib_sym (handle, COMP_UNIT_SYM);
   if (!saved_cu)
     xsignal1 (Qnative_lisp_file_inconsistent, comp_u->file);
-  bool reloading_cu = *saved_cu ? true : false;
+  bool reloading_cu = !NILP (*saved_cu) ? true : false;
   Lisp_Object *data_eph_relocs =
     dynlib_sym (handle, DATA_RELOC_EPHEMERAL_SYM);
 



reply via email to

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