]> git.eshelyaron.com Git - emacs.git/commitdiff
rework emit_call_n_ref
authorAndrea Corallo <andrea_corallo@yahoo.it>
Wed, 26 Jun 2019 20:29:39 +0000 (22:29 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:33:46 +0000 (11:33 +0100)
src/comp.c

index 5df67fe55f7ad4390a30a392b638c578977b3648..309271b8e87baa07cd8d0fc8e94b7d4ffb306131 100644 (file)
@@ -835,12 +835,12 @@ static gcc_jit_rvalue *
 emit_call_n_ref (const char *f_name, unsigned nargs,
                 gcc_jit_lvalue *base_arg)
 {
-  gcc_jit_rvalue *arguments[2] =
+  gcc_jit_rvalue *args[] =
     { gcc_jit_context_new_rvalue_from_int(comp.ctxt,
-                                               comp.ptrdiff_type,
-                                               nargs),
+                                         comp.ptrdiff_type,
+                                         nargs),
       gcc_jit_lvalue_get_address (base_arg, NULL) };
-  return emit_call (f_name, comp.lisp_obj_type, 2, arguments);
+  return emit_call (f_name, comp.lisp_obj_type, 2, args);
 }
 
 /* struct Lisp_Cons definition.  */