From dae32a40d904b88a92d574ee1b3a4b746a7e3260 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 13 Mar 2017 00:11:24 +0000 Subject: [PATCH] compile.c: omit newrange * compile.c (iseq_compile_each): omit creating literal-only range to be popped immediately. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/compile.c b/compile.c index 1cd21d82ca..118055954b 100644 --- a/compile.c +++ b/compile.c @@ -6088,16 +6088,13 @@ iseq_compile_each0(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, int popp iseq_add_mark_object_compile_time(iseq, val); ADD_INSN1(ret, line, putobject, val); } - break; - } - CHECK(COMPILE(ret, "min", (NODE *) node->nd_beg)); - CHECK(COMPILE(ret, "max", (NODE *) node->nd_end)); - if (popped) { - ADD_INSN(ret, line, pop); - ADD_INSN(ret, line, pop); } else { - ADD_INSN1(ret, line, newrange, flag); + CHECK(COMPILE_(ret, "min", b, popped)); + CHECK(COMPILE_(ret, "max", e, popped)); + if (!popped) { + ADD_INSN1(ret, line, newrange, flag); + } } break; }