From 2fa51c70683ef8198bddb3332eb62c9239cbde8f Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Mon, 1 Nov 2021 07:54:59 -0700 Subject: YJIT: Support kwargs sends with all defaults (#5067) * YJIT: Support kwargs sends with all defaults Previously keyword argument methods were only compiled by YJIT when all keywords were specified in the caller. This adds support for calling methods with keyword arguments when no keyword arguments are specified and all are filled with the defaults. * Remove unused send_iseq_kwargs_none_passed --- yjit.c | 1 - 1 file changed, 1 deletion(-) (limited to 'yjit.c') diff --git a/yjit.c b/yjit.c index a0ac959d4f..cef7492e34 100644 --- a/yjit.c +++ b/yjit.c @@ -82,7 +82,6 @@ YJIT_DECLARE_COUNTERS( send_iseq_arity_error, send_iseq_only_keywords, send_iseq_kwargs_req_and_opt_missing, - send_iseq_kwargs_none_passed, send_iseq_kwargs_mismatch, send_iseq_complex_callee, send_not_implemented_method, -- cgit v1.2.3