diff options
| author | Andrea Corallo | 2020-04-03 21:19:45 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-04-05 21:10:52 +0100 |
| commit | 70cb9644817ef59446d0705ba1362f200b3bd13d (patch) | |
| tree | 253b0124e045a282987fbb81265ee69926a22396 /src | |
| parent | 37a9d1e42b568b6a7b528ef40a209ab6658ff358 (diff) | |
| download | emacs-70cb9644817ef59446d0705ba1362f200b3bd13d.tar.gz emacs-70cb9644817ef59446d0705ba1362f200b3bd13d.zip | |
* src/comp.c: Clean-up unnecessary field declaration.
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 5 |
1 files changed, 0 insertions, 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 { | |||
| 107 | gcc_jit_type *uintptr_type; | 107 | gcc_jit_type *uintptr_type; |
| 108 | gcc_jit_type *lisp_obj_type; | 108 | gcc_jit_type *lisp_obj_type; |
| 109 | gcc_jit_type *lisp_obj_ptr_type; | 109 | gcc_jit_type *lisp_obj_ptr_type; |
| 110 | gcc_jit_field *lisp_obj_as_num; | ||
| 111 | /* struct Lisp_Cons */ | 110 | /* struct Lisp_Cons */ |
| 112 | gcc_jit_struct *lisp_cons_s; | 111 | gcc_jit_struct *lisp_cons_s; |
| 113 | gcc_jit_field *lisp_cons_u; | 112 | gcc_jit_field *lisp_cons_u; |
| @@ -3128,10 +3127,6 @@ DEFUN ("comp--init-ctxt", Fcomp__init_ctxt, Scomp__init_ctxt, | |||
| 3128 | comp.emacs_int_type = gcc_jit_context_get_int_type (comp.ctxt, | 3127 | comp.emacs_int_type = gcc_jit_context_get_int_type (comp.ctxt, |
| 3129 | sizeof (EMACS_INT), | 3128 | sizeof (EMACS_INT), |
| 3130 | true); | 3129 | true); |
| 3131 | comp.lisp_obj_as_num = gcc_jit_context_new_field (comp.ctxt, | ||
| 3132 | NULL, | ||
| 3133 | comp.emacs_int_type, | ||
| 3134 | "num"); | ||
| 3135 | /* No XLP is emitted for now so lets define this always as integer | 3130 | /* No XLP is emitted for now so lets define this always as integer |
| 3136 | disregarding LISP_WORDS_ARE_POINTERS value. */ | 3131 | disregarding LISP_WORDS_ARE_POINTERS value. */ |
| 3137 | comp.lisp_obj_type = comp.emacs_int_type; | 3132 | comp.lisp_obj_type = comp.emacs_int_type; |