aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 08:23:57 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 08:23:57 +0000
commit8eb2e6c14a8fcf3719fbdb82141aae5363e507b4 (patch)
treef876dd3bd5934e42afe64b3a51d7b2bfa3bbb31b
parente5d46e46994ae8b01a493692ef031615e99040b5 (diff)
downloadruby-8eb2e6c14a8fcf3719fbdb82141aae5363e507b4.tar.gz
`th` is not used.
* vm_args.c: `th` parameter is not used on the following functions: * args_check_block_arg0 * keyword_hash_p * args_pop_keyword_hash git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--vm_args.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/vm_args.c b/vm_args.c
index 4f97cd403f..0dc626fd2d 100644
--- a/vm_args.c
+++ b/vm_args.c
@@ -84,7 +84,7 @@ args_reduce(struct args_info *args, int over_argc)
}
static inline int
-args_check_block_arg0(struct args_info *args, rb_thread_t *th)
+args_check_block_arg0(struct args_info *args)
{
VALUE ary = Qnil;
@@ -172,7 +172,7 @@ args_rest_array(struct args_info *args)
}
static int
-keyword_hash_p(VALUE *kw_hash_ptr, VALUE *rest_hash_ptr, rb_thread_t *th)
+keyword_hash_p(VALUE *kw_hash_ptr, VALUE *rest_hash_ptr)
{
*rest_hash_ptr = rb_check_hash_type(*kw_hash_ptr);
@@ -189,7 +189,7 @@ keyword_hash_p(VALUE *kw_hash_ptr, VALUE *rest_hash_ptr, rb_thread_t *th)
}
static VALUE
-args_pop_keyword_hash(struct args_info *args, VALUE *kw_hash_ptr, rb_thread_t *th)
+args_pop_keyword_hash(struct args_info *args, VALUE *kw_hash_ptr)
{
VALUE rest_hash;
@@ -198,7 +198,7 @@ args_pop_keyword_hash(struct args_info *args, VALUE *kw_hash_ptr, rb_thread_t *t
VM_ASSERT(args->argc > 0);
*kw_hash_ptr = args->argv[args->argc-1];
- if (keyword_hash_p(kw_hash_ptr, &rest_hash, th)) {
+ if (keyword_hash_p(kw_hash_ptr, &rest_hash)) {
if (rest_hash) {
args->argv[args->argc-1] = rest_hash;
}
@@ -214,7 +214,7 @@ args_pop_keyword_hash(struct args_info *args, VALUE *kw_hash_ptr, rb_thread_t *t
if (len > 0) {
*kw_hash_ptr = RARRAY_AREF(args->rest, len - 1);
- if (keyword_hash_p(kw_hash_ptr, &rest_hash, th)) {
+ if (keyword_hash_p(kw_hash_ptr, &rest_hash)) {
if (rest_hash) {
RARRAY_ASET(args->rest, len - 1, rest_hash);
}
@@ -573,7 +573,7 @@ setup_parameters_complex(rb_execution_context_t * const ec, const rb_iseq_t * co
(min_argc > 0 || iseq->body->param.opt_num > 1 ||
iseq->body->param.flags.has_kw || iseq->body->param.flags.has_kwrest) &&
!iseq->body->param.flags.ambiguous_param0 &&
- args_check_block_arg0(args, rb_ec_thread_ptr(ec))) {
+ args_check_block_arg0(args)) {
given_argc = RARRAY_LENINT(args->rest);
}
break;
@@ -602,7 +602,7 @@ setup_parameters_complex(rb_execution_context_t * const ec, const rb_iseq_t * co
(!iseq->body->param.flags.has_rest && given_argc > max_argc &&
(ci->flag & VM_CALL_KW_SPLAT))) &&
args->kw_argv == NULL) {
- if (args_pop_keyword_hash(args, &keyword_hash, rb_ec_thread_ptr(ec))) {
+ if (args_pop_keyword_hash(args, &keyword_hash)) {
given_argc--;
}
}