From: Andrea Corallo Date: Thu, 4 Jun 2020 10:02:51 +0000 (+0100) Subject: * Fix build for --enable-check-lisp-object-type=yes (bug#41703) X-Git-Tag: emacs-28.0.90~2727^2~592 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5684b3420d73715836c5111ef1f6ec9e4e257e8f;p=emacs.git * Fix build for --enable-check-lisp-object-type=yes (bug#41703) * src/comp.c (emit_coerce): Add missing declaration. --- diff --git a/src/comp.c b/src/comp.c index 8e7582b3e65..45904a3bb1d 100644 --- a/src/comp.c +++ b/src/comp.c @@ -984,6 +984,7 @@ emit_coerce (gcc_jit_type *new_type, gcc_jit_rvalue *obj) gcc_jit_rvalue *lwordobj = emit_coerce (comp.lisp_word_type, obj); + static ptrdiff_t i; gcc_jit_lvalue *tmp_s = gcc_jit_function_new_local (comp.func, NULL, comp.lisp_obj_type, format_string ("lisp_obj_%td", i++));