emacs-diffs
[Top][All Lists]
Advanced

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

feature/native-comp 70cb964 2/9: * src/comp.c: Clean-up unnecessary fiel


From: Andrea Corallo
Subject: feature/native-comp 70cb964 2/9: * src/comp.c: Clean-up unnecessary field declaration.
Date: Sun, 5 Apr 2020 17:25:07 -0400 (EDT)

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

    * 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 935b7aa..f89414a 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;



reply via email to

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