1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

style nit

This commit is contained in:
Andrea Corallo 2019-09-09 22:56:09 +02:00
parent 59035c17d0
commit 6a69e49f01

View File

@ -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);