From 5485df3e105aadfd6b61854180a8c4a803fe993f Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 19 Dec 2007 21:39:08 +0000 Subject: * compile.c (iseq_compile_each): add pop after throw as return. * bootstraptest/test_knownbug.rb, test_syntax.rb: move resolved test. * vm_core.h, iseq.c, compile.h: add debug output code. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 07e70666d4..bbb43003ad 100644 --- a/compile.c +++ b/compile.c @@ -1127,6 +1127,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *anchor) } insn_info_table[k].line_no = iobj->line_no; insn_info_table[k].position = pos; + insn_info_table[k].sp = sp; pos += len; k++; break; @@ -3802,8 +3803,8 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) ADD_INSN(ret, nd_line(node), leave); } else { - ADD_INSN1(ret, nd_line(node), throw, - INT2FIX(0x01) /* TAG_RETURN */ ); + ADD_INSN1(ret, nd_line(node), throw, INT2FIX(0x01) /* TAG_RETURN */ ); + ADD_INSN(ret, nd_line(node), pop); } break; } -- cgit v1.2.3