From 4a4627fb0d770269f876c711b642b7f7275b22d2 Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 23 Jun 2017 09:43:52 +0000 Subject: move "state" to rb_vm_tag. * vm_core.h (rb_thread_t::tag_state): move to "rb_vm_tag::state". Lifetime of "state" should be same as current tag. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59159 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'vm_core.h') 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; -- cgit v1.2.3