aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/vm_core.h b/vm_core.h
index 73805a131e..7c04d5f022 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -765,6 +765,12 @@ typedef struct rb_execution_context_struct {
rb_fiber_t *fiber;
+ /* for rb_iterate */
+ VALUE passed_block_handler;
+
+ /* for bmethod */
+ const rb_callable_method_entry_t *passed_bmethod_me;
+
/* for GC */
struct {
VALUE *stack_start;
@@ -790,12 +796,6 @@ typedef struct rb_thread_struct {
VALUE last_status; /* $? */
- /* for rb_iterate */
- VALUE passed_block_handler;
-
- /* for bmethod */
- const rb_callable_method_entry_t *passed_bmethod_me;
-
/* for cfunc */
struct rb_calling_info *calling;