From: Andrea Corallo Date: Fri, 3 Apr 2020 20:19:45 +0000 (+0100) Subject: * src/comp.c: Clean-up unnecessary field declaration. X-Git-Tag: emacs-28.0.90~2727^2~728 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=70cb9644817ef59446d0705ba1362f200b3bd13d;p=emacs.git * src/comp.c: Clean-up unnecessary field declaration. --- diff --git a/src/comp.c b/src/comp.c index 935b7aafda1..f89414a3105 100644 --- a/src/comp.c +++ b/src/comp.c @@ -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;