aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/vm_core.h b/vm_core.h
index 6c1b9665c9..9081bcea3d 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -691,8 +691,9 @@ typedef RUBY_JMP_BUF rb_jmpbuf_t;
struct rb_vm_tag {
VALUE tag;
VALUE retval;
- rb_jmpbuf_t buf;
struct rb_vm_tag *prev;
+ enum ruby_tag_type state;
+ rb_jmpbuf_t buf;
};
struct rb_vm_protect_tag {
@@ -743,9 +744,6 @@ typedef struct rb_thread_struct {
int raised_flag;
VALUE last_status; /* $? */
- /* passing state */
- enum ruby_tag_type tag_state;
-
/* for rb_iterate */
VALUE passed_block_handler;