]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/comp.c: Clean-up unnecessary field declaration.
authorAndrea Corallo <akrl@sdf.org>
Fri, 3 Apr 2020 20:19:45 +0000 (21:19 +0100)
committerAndrea Corallo <akrl@sdf.org>
Sun, 5 Apr 2020 20:10:52 +0000 (21:10 +0100)
src/comp.c

index 935b7aafda11a34aaa95fc33ea256dec79904ac4..f89414a31055a15190be6d138bbab9eff46ce79c 100644 (file)
@@ -107,7 +107,6 @@ typedef struct {
   gcc_jit_type *uintptr_type;
   gcc_jit_type *lisp_obj_type;
   gcc_jit_type *lisp_obj_ptr_type;
-  gcc_jit_field *lisp_obj_as_num;
   /* struct Lisp_Cons */
   gcc_jit_struct *lisp_cons_s;
   gcc_jit_field *lisp_cons_u;
@@ -3128,10 +3127,6 @@ DEFUN ("comp--init-ctxt", Fcomp__init_ctxt, Scomp__init_ctxt,
   comp.emacs_int_type = gcc_jit_context_get_int_type (comp.ctxt,
                                                      sizeof (EMACS_INT),
                                                      true);
-  comp.lisp_obj_as_num = gcc_jit_context_new_field (comp.ctxt,
-                                                   NULL,
-                                                   comp.emacs_int_type,
-                                                   "num");
   /* No XLP is emitted for now so lets define this always as integer
      disregarding LISP_WORDS_ARE_POINTERS value.  */
   comp.lisp_obj_type = comp.emacs_int_type;