From 3cb196f404efdb391dd3020a1df0518b12338802 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Tue, 6 Feb 2018 14:07:57 +0000 Subject: mjit_compile.c: share the definition of macros (IS_ARGS_SPLAT, IS_ARGS_KEYWORD) with vm_args.c. vm_args.c: share them with mjit_compile.c. vm_insnhelper.h: get those definitions, with CALLER_SETUP_ARG too git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_args.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'vm_args.c') diff --git a/vm_args.c b/vm_args.c index 3bb2bd0a4b..d1207f7f62 100644 --- a/vm_args.c +++ b/vm_args.c @@ -884,11 +884,3 @@ vm_caller_setup_arg_block(const rb_execution_context_t *ec, rb_control_frame_t * } } } - -#define IS_ARGS_SPLAT(ci) ((ci)->flag & VM_CALL_ARGS_SPLAT) -#define IS_ARGS_KEYWORD(ci) ((ci)->flag & VM_CALL_KWARG) - -#define CALLER_SETUP_ARG(cfp, calling, ci) do { \ - if (UNLIKELY(IS_ARGS_SPLAT(ci))) vm_caller_setup_arg_splat((cfp), (calling)); \ - if (UNLIKELY(IS_ARGS_KEYWORD(ci))) vm_caller_setup_arg_kw((cfp), (calling), (ci)); \ -} while (0) -- cgit v1.2.3