summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-18 01:42:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-18 01:42:20 +0000
commitba03222da8ecc408310c37dca908f671ee3f1791 (patch)
treefed89f04b6b11158fb4bf91dbb71a17c857089a5 /vm_core.h
parentd0e25ed277549af21242009e649d93b73c82576c (diff)
Pack rb_iseq_constant_body from 296 to 288 bytes
[Fix GH-2099] From: Lourens Naudé <lourens@bearmetal.eu> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67290 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 7852ca4625..5fb230a1b4 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -460,6 +460,8 @@ struct rb_iseq_constant_body {
unsigned int ci_kw_size;
unsigned int stack_max; /* for stack overflow check */
+ char catch_except_p; /* If a frame of this ISeq may catch exception, set TRUE */
+
#if USE_MJIT
/* The following fields are MJIT related info. */
VALUE (*jit_func)(struct rb_execution_context_struct *,
@@ -467,7 +469,6 @@ struct rb_iseq_constant_body {
long unsigned total_calls; /* number of total calls with `mjit_exec()` */
struct rb_mjit_unit *jit_unit;
#endif
- char catch_except_p; /* If a frame of this ISeq may catch exception, set TRUE */
};
/* T_IMEMO/iseq */