From: Andrea Corallo Date: Sun, 29 Sep 2019 17:58:09 +0000 (+0200) Subject: fix missing direct parameter forwarding into emit_limple_call_ref X-Git-Tag: emacs-28.0.90~2727^2~1099 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d19bb4861553fe82b86ef09db6cb6b1fe1eae829;p=emacs.git fix missing direct parameter forwarding into emit_limple_call_ref --- diff --git a/src/comp.c b/src/comp.c index 15699a02118..2ab9d034ebf 100644 --- a/src/comp.c +++ b/src/comp.c @@ -1145,7 +1145,7 @@ emit_limple_call_ref (Lisp_Object insn, bool direct) Lisp_Object callee = FIRST (insn); EMACS_UINT nargs = XFIXNUM (Flength (CDR (insn))); EMACS_UINT base_ptr = XFIXNUM (FUNCALL1 (comp-mvar-slot, SECOND (insn))); - return emit_call_ref (callee, nargs, comp.frame[base_ptr], false); + return emit_call_ref (callee, nargs, comp.frame[base_ptr], direct); } /* Register an handler for a non local exit. */