From 6a69e49f01fdd025912e2d4397ebe2f51e3f188d Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Mon, 9 Sep 2019 22:56:09 +0200 Subject: [PATCH] style nit --- src/comp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); -- 2.39.5