summaryrefslogtreecommitdiff
path: root/iseq.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-12 14:45:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-12 14:45:30 +0000
commit31c99ce745fabe5b996446af5d849e265cf2d2ca (patch)
tree71e2f7e27b53825ac274f45b2ce5690149862442 /iseq.h
parent9f4107a9061e92032242fe8f3226ad2f681d7cd3 (diff)
* compile.c (iseq_compile_each): fix for __goto__ and __label__
where were totally broken. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30187 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.h')
-rw-r--r--iseq.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/iseq.h b/iseq.h
index abe888afec..d2aab1cc24 100644
--- a/iseq.h
+++ b/iseq.h
@@ -93,6 +93,9 @@ struct iseq_compile_data {
int label_no;
int node_level;
const rb_compile_option_t *option;
+#if SUPPORT_JOKE
+ st_table *labels_table;
+#endif
};
/* defined? */