From 130bb41d0a71547505e4f3e071deaf397cb28e38 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 1 Nov 2012 04:17:01 +0000 Subject: iseq.c: simplify * iseq.c (set_relation): simplify and merge same conditions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37397 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index 348836b99a..029dfa860c 100644 --- a/iseq.c +++ b/iseq.c @@ -213,30 +213,18 @@ set_relation(rb_iseq_t *iseq, const VALUE parent) cref->nd_next = iseq->cref_stack; iseq->cref_stack = cref; } + iseq->local_iseq = iseq; } else if (type == ISEQ_TYPE_METHOD || type == ISEQ_TYPE_CLASS) { iseq->cref_stack = NEW_CREF(0); /* place holder */ iseq->cref_stack->nd_refinements = Qnil; - } - else if (RTEST(parent)) { - rb_iseq_t *piseq; - GetISeqPtr(parent, piseq); - iseq->cref_stack = piseq->cref_stack; - } - - if (type == ISEQ_TYPE_TOP || - type == ISEQ_TYPE_METHOD || type == ISEQ_TYPE_CLASS) { iseq->local_iseq = iseq; } else if (RTEST(parent)) { rb_iseq_t *piseq; GetISeqPtr(parent, piseq); + iseq->cref_stack = piseq->cref_stack; iseq->local_iseq = piseq->local_iseq; - } - - if (RTEST(parent)) { - rb_iseq_t *piseq; - GetISeqPtr(parent, piseq); iseq->parent_iseq = piseq; } } -- cgit v1.2.3