From 1939d097e650a60557eafbd89a6684f4626e0ad5 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 26 Jun 2017 07:56:44 +0000 Subject: move several fields from rb_thread_t to rb_execution_context_t. * vm_core.h (rb_thread_t): move several fields which are copied at cont.c to rb_execution_context_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_trace.c') diff --git a/vm_trace.c b/vm_trace.c index 75c4693bc3..76728e21ed 100644 --- a/vm_trace.c +++ b/vm_trace.c @@ -358,7 +358,7 @@ rb_threadptr_exec_event_hooks_orig(rb_trace_arg_t *trace_arg, int pop_p) if (state) { if (pop_p) { if (VM_FRAME_FINISHED_P(th->ec.cfp)) { - th->tag = th->tag->prev; + th->ec.tag = th->ec.tag->prev; } rb_vm_pop_frame(th); } -- cgit v1.2.3