From ae46708c1014c7b6cd66a86e3b501b34112e08eb Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 12 Mar 2017 05:48:58 +0000 Subject: [PATCH] compile.c: NODE_VALUES must not be popped git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57891 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compile.c b/compile.c index c65b4f6173..ecce69512c 100644 --- a/compile.c +++ b/compile.c @@ -5504,14 +5504,14 @@ iseq_compile_each0(rb_iseq_t *iseq, LINK_ANCHOR *const ret, NODE *node, int popp } case NODE_VALUES:{ NODE *n = node; + if (popped) { + COMPILE_ERROR(ERROR_ARGS "NODE_VALUES: must not be popped"); + } while (n) { CHECK(COMPILE(ret, "values item", n->nd_head)); n = n->nd_next; } ADD_INSN1(ret, line, newarray, INT2FIX(node->nd_alen)); - if (popped) { - ADD_INSN(ret, line, pop); - } break; } case NODE_HASH:{