]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/comp.c (emit_const_lisp_obj, emit_mvar_val): Fix.
authorAndrea Corallo <akrl@sdf.org>
Sun, 5 Apr 2020 18:40:51 +0000 (19:40 +0100)
committerAndrea Corallo <akrl@sdf.org>
Sun, 5 Apr 2020 20:11:07 +0000 (21:11 +0100)
src/comp.c

index 904869d99c90840725d32b254d60a0d91f46994b..44de1f5fbcb97bb673df857838b1328b0dd2f88e 100644 (file)
@@ -1098,10 +1098,19 @@ emit_const_lisp_obj (Lisp_Object obj)
                               SSDATA (Fprin1_to_string (obj, Qnil))));
 
   if (NIL_IS_ZERO && EQ (obj, Qnil))
-    return emit_coerce (comp.lisp_obj_type,
-                       gcc_jit_context_new_rvalue_from_ptr (comp.ctxt,
-                                                            comp.void_ptr_type,
-                                                            NULL));
+    {
+      gcc_jit_rvalue *n;
+#ifdef WIDE_EMACS_INT
+      eassert (NIL_IS_ZERO);
+      n = emit_rvalue_from_long_long (0);
+#else
+      n = gcc_jit_context_new_rvalue_from_ptr (comp.ctxt,
+                                              comp.void_ptr_type,
+                                              NULL);
+#endif
+      return emit_coerce (comp.lisp_obj_type, n);
+    }
+
   imm_reloc_t reloc = obj_to_reloc (obj);
   return
     gcc_jit_lvalue_as_rvalue (
@@ -1319,12 +1328,15 @@ emit_mvar_val (Lisp_Object mvar)
          /* We can still emit directly objects that are self-contained in a
             word (read fixnums).  */
          emit_comment (SSDATA (Fprin1_to_string (constant, Qnil)));
-         gcc_jit_rvalue *word =
-           (sizeof (MOST_POSITIVE_FIXNUM) > sizeof (void *))
-           ? emit_rvalue_from_long_long (constant)
-           : gcc_jit_context_new_rvalue_from_long (comp.ctxt,
-                                                   comp.void_ptr_type,
-                                                   constant);
+         gcc_jit_rvalue *word;
+#ifdef WIDE_EMACS_INT
+         word = emit_rvalue_from_long_long (constant);
+#else
+         word =
+           gcc_jit_context_new_rvalue_from_ptr (comp.ctxt,
+                                                comp.void_ptr_type,
+                                                constant);
+#endif
          return emit_coerce (comp.lisp_obj_type, word);
        }
       /* Other const objects are fetched from the reloc array.  */