summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-06 07:26:54 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-06 07:26:54 +0000
commite0bed5f32e0c971afe8b6eedeebab8204b7ac2fb (patch)
tree9d01d2c89ad2ee7395be796bc57504b8be8e43e7 /compile.c
parent55f93cb63f350c7705733f86923561363a297e00 (diff)
compile.c (rb_iseq_compile_node): Move the check for imemo_ifunc to top
Applying nd_type to imemo_ifunc object seems harmless fortunately, but very dirty (to me). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/compile.c b/compile.c
index 4ff7472331..1b7158979a 100644
--- a/compile.c
+++ b/compile.c
@@ -618,6 +618,12 @@ rb_iseq_compile_node(rb_iseq_t *iseq, const NODE *node)
COMPILE(ret, "nil", node);
iseq_set_local_table(iseq, 0);
}
+ else if (imemo_type_p((VALUE)node, imemo_ifunc)) {
+ const struct vm_ifunc *ifunc = (struct vm_ifunc *)node;
+ /* user callback */
+ (*ifunc->func)(iseq, ret, ifunc->data);
+ }
+ /* assume node is T_NODE */
else if (nd_type(node) == NODE_SCOPE) {
/* iseq type of top, method, class, block */
iseq_set_local_table(iseq, node->nd_tbl);
@@ -664,11 +670,6 @@ rb_iseq_compile_node(rb_iseq_t *iseq, const NODE *node)
}
}
}
- else if (imemo_type_p((VALUE)node, imemo_ifunc)) {
- const struct vm_ifunc *ifunc = (struct vm_ifunc *)node;
- /* user callback */
- (*ifunc->func)(iseq, ret, ifunc->data);
- }
else {
const char *m;
#define INVALID_ISEQ_TYPE(type) \