aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
authorAndrea Corallo2019-09-29 19:58:09 +0200
committerAndrea Corallo2020-01-01 11:37:55 +0100
commitd19bb4861553fe82b86ef09db6cb6b1fe1eae829 (patch)
tree67580fc973f5417c2d481a18c3ded8c65128895b /src/comp.c
parentb8127e988e2af662bdcd7cf25d281469a5142df6 (diff)
downloademacs-d19bb4861553fe82b86ef09db6cb6b1fe1eae829.tar.gz
emacs-d19bb4861553fe82b86ef09db6cb6b1fe1eae829.zip
fix missing direct parameter forwarding into emit_limple_call_ref
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
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)
1145 Lisp_Object callee = FIRST (insn); 1145 Lisp_Object callee = FIRST (insn);
1146 EMACS_UINT nargs = XFIXNUM (Flength (CDR (insn))); 1146 EMACS_UINT nargs = XFIXNUM (Flength (CDR (insn)));
1147 EMACS_UINT base_ptr = XFIXNUM (FUNCALL1 (comp-mvar-slot, SECOND (insn))); 1147 EMACS_UINT base_ptr = XFIXNUM (FUNCALL1 (comp-mvar-slot, SECOND (insn)));
1148 return emit_call_ref (callee, nargs, comp.frame[base_ptr], false); 1148 return emit_call_ref (callee, nargs, comp.frame[base_ptr], direct);
1149} 1149}
1150 1150
1151/* Register an handler for a non local exit. */ 1151/* Register an handler for a non local exit. */