From 8baffe6ef664e53a6acf0c3f52e900d37780fabb Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 5 Dec 2011 09:50:12 +0000 Subject: * class.c (rb_obj_methods), compile.c (iseq_compile_each), iseq.c(iseq_load, rb_iseq_parameters), pack.c (pack_pack), regcomp.c (is_not_included, update_string_node_case_fold), transcode.c (rb_econv_open0, make_replacement), vm_eval.c (raise_method_missing): remove unused variable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 81d87be47e..9530684a1b 100644 --- a/compile.c +++ b/compile.c @@ -3293,7 +3293,6 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) VALUE prevblock = iseq->compile_data->current_block; LABEL *retry_label = NEW_LABEL(nd_line(node)); LABEL *retry_end_l = NEW_LABEL(nd_line(node)); - ID mid = 0; ADD_LABEL(ret, retry_label); if (nd_type(node) == NODE_FOR) { @@ -3303,7 +3302,6 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) NEW_CHILD_ISEQVAL(node->nd_body, make_name_for_block(iseq), ISEQ_TYPE_BLOCK, nd_line(node)); - mid = idEach; ADD_SEND_R(ret, nd_line(node), ID2SYM(idEach), INT2FIX(0), iseq->compile_data->current_block, INT2FIX(0)); } -- cgit v1.2.3