summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-03 18:50:28 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-03 18:50:28 +0000
commitd82f3e7d5cf98f484cd1b3ed397e45d2fd7cf806 (patch)
treea9134cc3c203206eeefdebe5d2a22c28e8086778 /compile.c
parent49b0a4d5edf3a86b2854bdf3d6d705d199f0aa90 (diff)
* compile.c (compile_massign): fix massign compilation
(example: a, *v, (*x) = ...). [ruby-dev:31107] * bootstraptest/test_massign.rb: add tests for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index 3bcce2871c..a30a98efdb 100644
--- a/compile.c
+++ b/compile.c
@@ -2049,12 +2049,22 @@ compile_massign(rb_iseq_t *iseq, LINK_ANCHOR *ret,
DECL_ANCHOR(lhs);
COMPILE_POPED(lhs, "post", n->nd_head);
- REMOVE_ELEM(FIRST_ELEMENT(lhs));
+
+ if (nd_type(n->nd_head) != NODE_MASGN) {
+ REMOVE_ELEM(FIRST_ELEMENT(lhs));
+ }
+
ADD_SEQ(ret, lhs);
n = n->nd_next;
}
- make_masgn_lhs(iseq, ret, splatn->nd_1st);
+ if (splatn->nd_1st == (NODE*)(VALUE)-1) {
+ /* v1, *, v2 = expr */
+ ADD_INSN(ret, nd_line(splatn), pop);
+ }
+ else {
+ make_masgn_lhs(iseq, ret, splatn->nd_1st);
+ }
}
else {
make_masgn_lhs(iseq, ret, splatn);