summaryrefslogtreecommitdiff
path: root/env.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-20 08:33:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-20 08:33:49 +0000
commit6eb98c5ebe264eb0be6488c7db875137a44d8279 (patch)
tree8c8b6e6962798bc57a9519a6f140b79c009ee050 /env.h
parent8405551e6d05c08c4e6a25672e009d349d888aa1 (diff)
* eval.c (PUSH_FRAME): generate unique number to be TAG_JUMP()
destination. * eval.c (localjump_destination): use unique number in ruby_frame for localjump destination. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'env.h')
-rw-r--r--env.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/env.h b/env.h
index 388c946933..c47c01d9db 100644
--- a/env.h
+++ b/env.h
@@ -25,6 +25,7 @@ extern struct FRAME {
struct RNode *node;
int iter;
int flags;
+ unsigned long uniq;
} *ruby_frame;
void rb_gc_mark_frame _((struct FRAME *));