From 70cb9644817ef59446d0705ba1362f200b3bd13d Mon Sep 17 00:00:00 2001
From: Andrea Corallo <akrl@sdf.org>
Date: Fri, 3 Apr 2020 21:19:45 +0100
Subject: [PATCH] * src/comp.c: Clean-up unnecessary field declaration.

---
 src/comp.c | 5 -----
 1 file changed, 5 deletions(-)

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;
-- 
2.39.5