From: Andrea Corallo Date: Mon, 9 Sep 2019 20:56:09 +0000 (+0200) Subject: style nit X-Git-Tag: emacs-28.0.90~2727^2~1183 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a69e49f01fdd025912e2d4397ebe2f51e3f188d;p=emacs.git style nit --- diff --git a/src/comp.c b/src/comp.c index 98932f79bb0..33ed4d6397b 100644 --- a/src/comp.c +++ b/src/comp.c @@ -2699,9 +2699,9 @@ compile_function (Lisp_Object func) frame_size), "local"); - gcc_jit_lvalue **frame = SAFE_ALLOCA (frame_size * sizeof (*frame)); + comp.frame = SAFE_ALLOCA (frame_size * sizeof (*comp.frame)); for (int i = 0; i < frame_size; ++i) - frame[i] = + comp.frame[i] = gcc_jit_context_new_array_access ( comp.ctxt, NULL, @@ -2709,7 +2709,6 @@ compile_function (Lisp_Object func) gcc_jit_context_new_rvalue_from_int (comp.ctxt, comp.int_type, i)); - comp.frame = frame; comp.func_blocks = CALLN (Fmake_hash_table);